mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-14 21:43:50 +01:00
Default enable email notifs to False
This commit is contained in:
parent
ff5e5423e5
commit
765f2b8446
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ class EmailConfig(Config):
|
||||||
self.email_enable_notifs = False
|
self.email_enable_notifs = False
|
||||||
|
|
||||||
email_config = config.get("email", {})
|
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:
|
if self.email_enable_notifs:
|
||||||
required = [
|
required = [
|
||||||
|
|
Loading…
Reference in a new issue