Only parse from email if provided
This commit is contained in:
parent
1cc5fc1f6c
commit
2f62e1f6ff
|
@ -51,10 +51,11 @@ class EmailConfig(Config):
|
||||||
self.email_app_name = "Matrix"
|
self.email_app_name = "Matrix"
|
||||||
|
|
||||||
self.email_notif_from = email_config.get("notif_from", None)
|
self.email_notif_from = email_config.get("notif_from", None)
|
||||||
# make sure it's valid
|
if self.email_notif_from is not None:
|
||||||
parsed = email.utils.parseaddr(self.email_notif_from)
|
# make sure it's valid
|
||||||
if self.email_notif_from and parsed[1] == '':
|
parsed = email.utils.parseaddr(self.email_notif_from)
|
||||||
raise RuntimeError("Invalid notif_from address")
|
if parsed[1] == '':
|
||||||
|
raise RuntimeError("Invalid notif_from address")
|
||||||
|
|
||||||
template_dir = email_config.get("template_dir")
|
template_dir = email_config.get("template_dir")
|
||||||
# we need an absolute path, because we change directory after starting (and
|
# we need an absolute path, because we change directory after starting (and
|
||||||
|
|
Loading…
Reference in New Issue