summary refs log tree commit diff
path: root/synapse/config
diff options
context:
space:
mode:
authorDavid Baker <dave@matrix.org>2016-04-29 14:46:18 +0100
committerDavid Baker <dave@matrix.org>2016-04-29 14:46:18 +0100
commit765f2b8446b99fd9d31311ec0f965e6e57fc9c44 (patch)
treedb271545f12fcf3681e5dbbb1d2a02da9890730f /synapse/config
parentInclude res in the manifest (diff)
downloadsynapse-765f2b8446b99fd9d31311ec0f965e6e57fc9c44.tar.xz
Default enable email notifs to False
Diffstat (limited to 'synapse/config')
-rw-r--r--synapse/config/emailconfig.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/config/emailconfig.py b/synapse/config/emailconfig.py
index 4318c6f13d..1fa2bab3a0 100644
--- a/synapse/config/emailconfig.py
+++ b/synapse/config/emailconfig.py
@@ -24,7 +24,7 @@ class EmailConfig(Config):
         self.email_enable_notifs = False
 
         email_config = config.get("email", {})
-        self.email_enable_notifs = email_config.get("enable_notifs", True)
+        self.email_enable_notifs = email_config.get("enable_notifs", False)
 
         if self.email_enable_notifs:
             required = [