summaryrefslogtreecommitdiffstats
path: root/pym/portage/elog_modules/mod_mail.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/portage/elog_modules/mod_mail.py')
-rw-r--r--pym/portage/elog_modules/mod_mail.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/pym/portage/elog_modules/mod_mail.py b/pym/portage/elog_modules/mod_mail.py
new file mode 100644
index 000000000..b8e17a51a
--- /dev/null
+++ b/pym/portage/elog_modules/mod_mail.py
@@ -0,0 +1,22 @@
+# portage.py -- core Portage functionality
+# Copyright 1998-2004 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+import portage_mail, socket
+
+def process(mysettings, cpv, logentries, fulltext):
+ if mysettings.has_key("PORTAGE_ELOG_MAILURI"):
+ myrecipient = mysettings["PORTAGE_ELOG_MAILURI"].split()[0]
+ else:
+ myrecipient = "root@localhost"
+
+ myfrom = mysettings["PORTAGE_ELOG_MAILFROM"]
+ mysubject = mysettings["PORTAGE_ELOG_MAILSUBJECT"]
+ mysubject = mysubject.replace("${PACKAGE}", cpv)
+ mysubject = mysubject.replace("${HOST}", socket.getfqdn())
+
+ mymessage = portage_mail.create_message(myfrom, myrecipient, mysubject, fulltext)
+ portage_mail.send_mail(mysettings, mymessage)
+
+ return