From 77faac0cb7719bc84aa5653a6179a6e7c0bf4bf9 Mon Sep 17 00:00:00 2001
From: Adrian Holovaty <adrian@holovaty.com>
Date: Mon, 1 Aug 2005 20:01:18 +0000
Subject: [PATCH] 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
---
 django/conf/global_settings.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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'.