Changed SEND_BROKEN_LINK_EMAILS from True to False in global_settings -- it was causing too much confusion with improperly configured/missing mail servers
git-svn-id: http://code.djangoproject.com/svn/django/trunk@376 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
c73f4cd486
commit
77faac0cb7
|
@ -36,7 +36,7 @@ MANAGERS = ADMINS
|
|||
SERVER_EMAIL = 'root@localhost'
|
||||
|
||||
# Whether to send broken-link e-mails.
|
||||
SEND_BROKEN_LINK_EMAILS = True
|
||||
SEND_BROKEN_LINK_EMAILS = False
|
||||
|
||||
# Database connection info.
|
||||
DATABASE_ENGINE = 'postgresql' # 'postgresql', 'mysql', or 'sqlite3'.
|
||||
|
|
Loading…
Reference in New Issue