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