diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2005-08-01 20:01:18 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2005-08-01 20:01:18 +0000 |
| commit | 77faac0cb7719bc84aa5653a6179a6e7c0bf4bf9 (patch) | |
| tree | 3f59d2c3215102ee97a0efc09f42ea88c054c468 | |
| parent | c73f4cd48697b7680fa95acb47f74720a1dce68f (diff) | |
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
| -rw-r--r-- | django/conf/global_settings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/conf/global_settings.py b/django/conf/global_settings.py index 74f29ed426..54ec8a377b 100644 --- a/django/conf/global_settings.py +++ b/django/conf/global_settings.py @@ -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'. |
