summary refs log tree commit diff
path: root/synapse/config/homeserver.py
diff options
context:
space:
mode:
authorDavid Baker <dave@matrix.org>2016-04-20 13:02:01 +0100
committerDavid Baker <dave@matrix.org>2016-04-20 13:02:01 +0100
commitf63bd4ff4704c9f7b6e23c76720dbd955a60c058 (patch)
treea503afc43fc4a6ab84190586f267a31c94cb466c /synapse/config/homeserver.py
parentAdd single instance & logging stuff (diff)
downloadsynapse-f63bd4ff4704c9f7b6e23c76720dbd955a60c058.tar.xz
Send a rather basic email notif
Also pep8 fixes
Diffstat (limited to 'synapse/config/homeserver.py')
-rw-r--r--synapse/config/homeserver.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/config/homeserver.py b/synapse/config/homeserver.py

index 9a80ac39ec..fc2445484c 100644 --- a/synapse/config/homeserver.py +++ b/synapse/config/homeserver.py
@@ -31,13 +31,14 @@ from .cas import CasConfig from .password import PasswordConfig from .jwt import JWTConfig from .ldap import LDAPConfig +from .emailconfig import EmailConfig class HomeServerConfig(TlsConfig, ServerConfig, DatabaseConfig, LoggingConfig, RatelimitConfig, ContentRepositoryConfig, CaptchaConfig, VoipConfig, RegistrationConfig, MetricsConfig, ApiConfig, AppServiceConfig, KeyConfig, SAML2Config, CasConfig, - JWTConfig, LDAPConfig, PasswordConfig,): + JWTConfig, LDAPConfig, PasswordConfig, EmailConfig,): pass