diff options
Diffstat (limited to 'monitor/josef_experimental.py')
-rwxr-xr-x | monitor/josef_experimental.py | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/monitor/josef_experimental.py b/monitor/josef_experimental.py index c9a94e2..5939b82 100755 --- a/monitor/josef_experimental.py +++ b/monitor/josef_experimental.py @@ -169,20 +169,24 @@ def parse_entry(e, idx, log): -from subprocess import call +import subprocess def email(s): for addr in EMAIL_ADDR: - command = 'echo "' + s + '" | mail -s "' + EMAIL_SUBJECT + '" ' + addr - command = 'echo "message content" | mail -s "' + EMAIL_SUBJECT + '" josef@nordu.net' - os.system("bash -c '" + command + "'") - + # 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) + parsed = p.communicate(s) + print parsed if __name__ == '__main__': # Test email if True: - email("this is an automated test") + email("this is an automated test...") # Find let's encrypt certs |