diff options
Diffstat (limited to 'conf.py')
-rw-r--r-- | conf.py | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -26,10 +26,8 @@ DATABASE_ADDRESS = config.get('database', 'address') WEBSERVER_DEBUG = int(config.get('webserver', 'debug')) == 1 WEBSERVER_HOST = config.get('webserver', 'host') WEBSERVER_PORT = int(config.get('webserver', 'port')) -WEBSERVER_USERNAME = config.get('webserver', 'username') -WEBSERVER_PASSWORD = config.get('webserver', 'password') MAIL_HOST = config.get('mail', 'host') MAIL_PORT = int(config.get('mail', 'port')) MAIL_SSL = int(config.get('mail', 'ssl')) == 1 -MAIL_USERNAME = config.get('mail', 'username')
\ No newline at end of file +MAIL_USERNAME = config.get('mail', 'username') |