]> git.decadent.org.uk Git - dak.git/commitdiff
Allow override of queued mail address
authorJoerg Jaspert <joerg@debian.org>
Tue, 7 Sep 2010 21:11:50 +0000 (23:11 +0200)
committerJoerg Jaspert <joerg@debian.org>
Tue, 7 Sep 2010 21:17:35 +0000 (23:17 +0200)
Signed-off-by: Joerg Jaspert <joerg@debian.org>
tools/debianqueued-0.9/config
tools/debianqueued-0.9/config-backports
tools/debianqueued-0.9/config-upload
tools/debianqueued-0.9/debianqueued

index 2e6f41f3b3a7c296eb284c1af95fb605834f6348..16c482a0ef7e26653b80d64618a9c8c4d3f7f687 100644 (file)
@@ -125,6 +125,8 @@ $remote_timeout = 3*60*60; # 3 hours
 # mail address of maintainer
 $maintainer_mail = "ftpmaster\@debian.org";
 
+# to override the TO address of ALL outgoing mail, set this value.
+$overridemail = "";
 
 # logfile rotating:
 # -----------------
index bf8f76e51ceb8c33721a384c69c2dd32abdd221b..9144acc93d24831f38e93ea9e75a3097d0b9332c 100644 (file)
@@ -125,6 +125,9 @@ $remote_timeout = 3*60*60; # 3 hours
 # mail address of maintainer
 $maintainer_mail = "ftpmaster\@debian.org";
 
+# to override the TO address of ALL outgoing mail, set this value.
+$overridemail = "debian-backports-changes@lists.debian.org";
+
 # logfile rotating:
 # -----------------
 #    how often to rotate (in days)
index a8743e53c533ad2798fb66268f5b3e494f86cb51..77cc90d7a264cd0cfea475782ee655dbe73f7990 100644 (file)
@@ -125,6 +125,8 @@ $remote_timeout = 3*60*60; # 3 hours
 # mail address of maintainer
 $maintainer_mail = "ftpmaster\@debian.org";
 
+# to override the TO address of ALL outgoing mail, set this value.
+$overridemail = "";
 
 # logfile rotating:
 # -----------------
index 37171ce20ecfcad52497ffd595c13d6676b5f7ba..1eb502dcdeba46f4899547407df266750ed88698 100755 (executable)
@@ -59,6 +59,7 @@ $junk         = @conf::test_binaries;
 $junk         = @conf::maintainer_mail;
 $junk         = @conf::targetdir_delayed;
 $junk         = $conf::mail ||= '/usr/sbin/sendmail';
+$junk         = $conf::overridemail;
 $conf::target = "localhost" if $conf::upload_method eq "copy";
 
 package main;
@@ -2330,7 +2331,10 @@ sub send_mail($$$) {
     $Email::Send::Sendmail::SENDMAIL = $conf::mail;
   }
 
-  $addr = 'debian-backports-changes@lists.debian.org';
+  if ($conf::overridemail) {
+       $addr = $conf::overridemail;
+  }
+
   my $date = sprintf "%s",
     strftime( "%a, %d %b %Y %T %z", ( localtime(time) ) );
   my $message = <<__MESSAGE__;