diff --git a/django/conf/global_settings.py b/django/conf/global_settings.py index 560d5658ea1..f6ec3d2611d 100644 --- a/django/conf/global_settings.py +++ b/django/conf/global_settings.py @@ -89,6 +89,9 @@ DATABASE_PORT = '' # Set to empty string for default. Not used with # Host for sending e-mail. EMAIL_HOST = 'localhost' +# Port for sending e-mail. +EMAIL_PORT = 25 + # Optional SMTP authentication information for EMAIL_HOST. EMAIL_HOST_USER = '' EMAIL_HOST_PASSWORD = '' diff --git a/django/core/mail.py b/django/core/mail.py index 4f196c5b25d..6a3cba141cb 100644 --- a/django/core/mail.py +++ b/django/core/mail.py @@ -30,7 +30,7 @@ def send_mass_mail(datatuple, fail_silently=False, auth_user=settings.EMAIL_HOST If auth_user and auth_password are set, they're used to log in. """ try: - server = smtplib.SMTP(settings.EMAIL_HOST) + server = smtplib.SMTP(settings.EMAIL_HOST, settings.EMAIL_PORT) if auth_user and auth_password: server.login(auth_user, auth_password) except: diff --git a/docs/settings.txt b/docs/settings.txt index 256a1b950cc..25c07785fda 100644 --- a/docs/settings.txt +++ b/docs/settings.txt @@ -334,6 +334,8 @@ Default: ``'localhost'`` The host to use for sending e-mail. +See also ``EMAIL_PORT``. + EMAIL_HOST_PASSWORD ------------------- @@ -358,6 +360,15 @@ Django won't attempt authentication. See also ``EMAIL_HOST_PASSWORD``. +EMAIL_PORT +---------- + +Default: ``25`` + +**New in Django development version.** + +Port to use for the SMTP server defined in ``EMAIL_HOST``. + EMAIL_SUBJECT_PREFIX --------------------