1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-21 03:02:09 +00:00

changed quit() and put it in a while loop to keep trying. never give up.

This commit is contained in:
John Leonardo 2016-08-14 00:29:30 -07:00 committed by GitHub
parent e9368de462
commit 8102f2020b

View File

@ -22,8 +22,8 @@ admin_addr = "administrator@" + env['PRIMARY_HOSTNAME']
content = sys.stdin.read().strip()
# If there's nothing coming in, just exit.
if content == "":
sys.exit(0)
while content == "":
content = sys.stdin.read().strip()
# create MIME message
msg = Message()