提交 373708ec 编写于 作者: L Luca Falavigna

daklib/queue.py: send mails to sponsors too

sponsoremail is not adjusted anymore, so check whether
a given upload has been sponsored in order to fill that
field. This addresses bug #568369.
Signed-off-by: NLuca Falavigna <dktrkranz@debian.org>
上级 a65e0344
......@@ -329,8 +329,11 @@ class Upload(object):
self.Subst["__MAINTAINER_TO__"] = self.pkg.changes["maintainer2047"]
self.Subst["__MAINTAINER__"] = self.pkg.changes.get("maintainer", "Unknown")
if "sponsoremail" in self.pkg.changes:
session = DBConn().session()
fpr = get_fingerprint(self.pkg.changes['fingerprint'], session)
if self.check_if_upload_is_sponsored("%s@debian.org" % fpr.uid.uid, fpr.uid.name):
self.Subst["__MAINTAINER_TO__"] += ", %s" % self.pkg.changes["sponsoremail"]
session.close()
if cnf.has_key("Dinstall::TrackingServer") and self.pkg.changes.has_key("source"):
self.Subst["__MAINTAINER_TO__"] += "\nBcc: %s@%s" % (self.pkg.changes["source"], cnf["Dinstall::TrackingServer"])
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册