mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2024-11-22 02:17:26 +00:00
7 lines
147 B
Python
7 lines
147 B
Python
|
from daemon import app
|
||
|
import auth, utils
|
||
|
|
||
|
app.logger.addHandler(utils.create_syslog_handler())
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
app.run(port=10222)
|