From 6da17053d495bee58ea78d4fb394d7618aeaab1a Mon Sep 17 00:00:00 2001 From: Sebastian Rahlf Date: Wed, 12 Jun 2013 08:50:25 +0200 Subject: [PATCH] Fix section reference in docs. --- docs/topics/mailbox_types.rst | 8 ++++---- docs/topics/polling.rst | 2 ++ 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/topics/mailbox_types.rst b/docs/topics/mailbox_types.rst index 1bf2917..9f74468 100644 --- a/docs/topics/mailbox_types.rst +++ b/docs/topics/mailbox_types.rst @@ -6,9 +6,9 @@ Django Mailbox supports polling both common internet mailboxes like POP3 and IMA .. table:: 'Protocol' Options - ============ ============== =============================================================== + ============ ============== =============================================== Mailbox Type 'Protocol':// Notes - ============ ============== =============================================================== + ============ ============== =============================================== POP3 ``pop3://`` Can also specify SSL with ``pop3+ssl://`` IMAP ``imap://`` Can also specify SSL with ``imap+ssl://`` Maildir ``maildir://`` @@ -16,8 +16,8 @@ Django Mailbox supports polling both common internet mailboxes like POP3 and IMA Babyl ``babyl://`` MH ``mh://`` MMDF ``mmdf://`` - Piped Mail *empty* See `Receiving mail directly from Exim4 or Postfix via a pipe`_ - ============ ============== =============================================================== + Piped Mail *empty* See :ref:`receiving-mail-from-exim4-or-postfix` + ============ ============== =============================================== .. WARNING:: This will delete any messages it can find in the inbox you specify; diff --git a/docs/topics/polling.rst b/docs/topics/polling.rst index ee733d3..eb463dd 100644 --- a/docs/topics/polling.rst +++ b/docs/topics/polling.rst @@ -29,6 +29,8 @@ You can easily consume incoming mail by running the management command named ``g python manage.py getmail +.. _receiving-mail-from-exim4-or-postfix: + Receiving mail directly from Exim4 or Postfix via a pipe --------------------------------------------------------