Switch to unified view

a/mail/config/settings.py b/mail/config/settings.py
...
...
3
3
4
relay_config = {'host': 'localhost', 'port': 8825}
4
relay_config = {'host': 'localhost', 'port': 8825}
5
5
6
receiver_config = {'host': 'localhost', 'port': 8823}
6
receiver_config = {'host': 'localhost', 'port': 8823}
7
7
8
handlers = ['app.handlers.sample']
8
handlers = ['app.handlers.sample', 'app.handlers.index', 'app.handlers.amqp']
9
9
10
router_defaults = {'host': 'localhost'}
10
router_defaults = {'host': 'localhost'}
11
11
12
template_config = {'dir': 'app', 'module': 'templates'}
12
template_config = {'dir': 'app', 'module': 'templates'}
13
13