X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=daklib%2Futils.py;h=1b35feef2eb697e930152b85ca612b3f1ea9e29e;hb=9f371390bb90395b2f2f0b65c91c21047896774a;hp=5e3627969f9b1f69cd8a216afe3b4dd49a5495c3;hpb=cd5b29ddfd8de263c085f494b9573d683913f6f3;p=dak.git diff --git a/daklib/utils.py b/daklib/utils.py index 5e362796..1b35feef 100755 --- a/daklib/utils.py +++ b/daklib/utils.py @@ -37,10 +37,14 @@ import stat import apt_pkg import database import time +import tarfile +import re +import string +import email as modemail from dak_exceptions import * from regexes import re_html_escaping, html_escaping, re_single_line_field, \ re_multi_line_field, re_srchasver, re_verwithext, \ - re_parse_maintainer, re_taint_free, re_gpg_uid + re_parse_maintainer, re_taint_free, re_gpg_uid, re_re_mark ################################################################################ @@ -598,6 +602,67 @@ def send_mail (message, filename=""): os.write (fd, message) os.close (fd) + if Cnf.has_key("Dinstall::MailWhiteList") and \ + Cnf["Dinstall::MailWhiteList"] != "": + message_in = open_file(filename) + message_raw = modemail.message_from_file(message_in) + message_in.close(); + + whitelist = []; + whitelist_in = open_file(Cnf["Dinstall::MailWhiteList"]) + try: + for line in whitelist_in: + if re_re_mark.match(line): + whitelist.append(re.compile(re_re_mark.sub("", line.strip(), 1))) + else: + whitelist.append(re.compile(re.escape(line.strip()))) + finally: + whitelist_in.close() + + # Fields to check. + fields = ["To", "Bcc", "Cc"] + for field in fields: + # Check each field + value = message_raw.get(field, None) + if value != None: + match = []; + for item in value.split(","): + (rfc822_maint, rfc2047_maint, name, email) = fix_maintainer(item.strip()) + mail_whitelisted = 0 + for wr in whitelist: + if wr.match(email): + mail_whitelisted = 1 + break + if not mail_whitelisted: + print "Skipping %s since it's not in %s" % (item, Cnf["Dinstall::MailWhiteList"]) + continue + match.append(item) + + # Doesn't have any mail in whitelist so remove the header + if len(match) == 0: + del message_raw[field] + else: + message_raw.replace_header(field, string.join(match, ", ")) + + # Change message fields in order if we don't have a To header + if not message_raw.has_key("To"): + fields.reverse() + for field in fields: + if message_raw.has_key(field): + message_raw[fields[-1]] = message_raw[field] + del message_raw[field] + break + else: + # Clean up any temporary files + # and return, as we removed all recipients. + if message: + os.unlink (filename); + return; + + fd = os.open(filename, os.O_RDWR|os.O_EXCL, 0700); + os.write (fd, message_raw.as_string(True)); + os.close (fd); + # Invoke sendmail (result, output) = commands.getstatusoutput("%s < %s" % (Cnf["Dinstall::SendmailCommand"], filename)) if (result != 0): @@ -1442,7 +1507,7 @@ def generate_contents_information(filename): Generate a list of flies contained in a .deb @type filename: string - @param filename: the path to a .deb + @param filename: the path to a data.tar.gz or data.tar.bz2 @rtype: list @return: a list of files in the data.tar.* portion of the .deb @@ -1468,7 +1533,7 @@ def generate_contents_information(filename): # and pieces the deb had ... if chunks[2] == "data.tar.gz": data = tarfile.open("data.tar.gz", "r:gz") - elif data_tar == "data.tar.bz2": + elif chunks[2] == "data.tar.bz2": data = tarfile.open("data.tar.bz2", "r:bz2") else: os.remove(chunks[2]) @@ -1480,6 +1545,7 @@ def generate_contents_information(filename): finally: if os.path.exists( chunks[2] ): + shutil.rmtree( chunks[2] ) os.remove( chunks[2] ) return contents