Django

Code

Changeset 5115

Show
Ignore:
Timestamp:
04/27/07 23:08:31 (1 year ago)
Author:
adrian
Message:

Made small formatting tweaks to docs/settings.txt and docs/email.txt changes from [5111]

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/email.txt

    r5111 r5115  
    2222 
    2323Mail will be sent using the SMTP host and port specified in the `EMAIL_HOST`_ 
    24 and `EMAIL_PORT`_ settings.  The `EMAIL_HOST_USER`_ and `EMAIL_HOST_PASSWORD`_ 
    25 settings, if set, will be used to authenticate to the 
    26 SMTP server. 
     24and `EMAIL_PORT`_ settings. The `EMAIL_HOST_USER`_ and `EMAIL_HOST_PASSWORD`_ 
     25settings, if set, will be used to authenticate to the SMTP server. 
    2726 
    2827.. note:: 
  • django/trunk/docs/settings.txt

    r5111 r5115  
    397397 
    398398Password to use for the SMTP server defined in ``EMAIL_HOST``. This setting is 
    399 used in conjunction with EMAIL_HOST_USER when authenticating to the SMTP server. 
    400 If either of these settings is empty, Django won't attempt authenticaion. 
     399used in conjunction with ``EMAIL_HOST_USER`` when authenticating to the SMTP 
     400server. If either of these settings is empty, Django won't attempt 
     401authenticaion. 
    401402 
    402403See also ``EMAIL_HOST_USER``.