From a932cff9da3cf794d84fcc884b2fac189f1bd96d Mon Sep 17 00:00:00 2001 From: josef Date: Tue, 8 Dec 2015 10:50:52 +0100 Subject: reworking logging, testing failure --- monitor/josef_experimental.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'monitor/josef_experimental.py') diff --git a/monitor/josef_experimental.py b/monitor/josef_experimental.py index b3acf1c..b40219f 100755 --- a/monitor/josef_experimental.py +++ b/monitor/josef_experimental.py @@ -172,20 +172,17 @@ def parse_entry(e, idx, log): import subprocess def email(s): for addr in EMAIL_ADDR: - # command = 'echo "' + s + '" | mail -s "' + EMAIL_SUBJECT + '" ' + addr - # os.system("bash -c '" + command + "'") p = subprocess.Popen( ["mail", "-s", EMAIL_SUBJECT, addr], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE) p.communicate(s) - # print parsed if __name__ == '__main__': # Test email - if True: + if False: email("this is an automated test...") -- cgit v1.1