From 3c16149e716b9677417731a2651d5a3cb0862b49 Mon Sep 17 00:00:00 2001 From: Craig Lamparter Date: Tue, 8 Dec 2020 15:01:07 -0800 Subject: [PATCH] fix parse_email unicode probs by using body.decode(errors='ignore').. again --- aprsd/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aprsd/main.py b/aprsd/main.py index 75653da..24b10fa 100644 --- a/aprsd/main.py +++ b/aprsd/main.py @@ -362,8 +362,8 @@ def resend_email(count, fromcall): def check_email_thread(): global check_email_delay - LOG.debug("FIXME initial email delay is 10 seconds") - check_email_delay = 10 + #LOG.debug("FIXME initial email delay is 10 seconds") + check_email_delay = 60 while True: # LOG.debug("Top of check_email_thread.")