aboutsummaryrefslogtreecommitdiff
path: root/jobs/JobBase.py
diff options
context:
space:
mode:
Diffstat (limited to 'jobs/JobBase.py')
-rwxr-xr-xjobs/JobBase.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/jobs/JobBase.py b/jobs/JobBase.py
index e7b3c33..a10bdeb 100755
--- a/jobs/JobBase.py
+++ b/jobs/JobBase.py
@@ -34,11 +34,11 @@ def sendEmail(config, subject, body, to=""):
FROM = config.get('email', 'user')
PASS = config.get('email', 'pass')
if not to:
- to = config.get('alertcontact', 'default')
+ to = config.get('general', 'alertcontact')
# Prepare actual message
# Avoid gmail threading
- subject = subject + " " + str(random.random())
+ subject = "[" + config.get('general', 'servername') + "] " + subject + " " + str(random.random())
message = """\From: %s\nTo: %s\nSubject: %s\n\n%s""" \
% (FROM, ", ".join(to), subject, body)
try: