X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=tools%2Fdebianqueued-0.9%2Fdebianqueued;h=97359b0f8b540099e9dd546cb28a0550d62fee23;hb=96e77022c8fe1d4a6021a7b4d797506a5a47381a;hp=d6f2afdc7970c7ef13d662ecff2ec92e9bcc0ef8;hpb=cae814a1ffbbb2944931693f35f73062a5ea99e7;p=dak.git diff --git a/tools/debianqueued-0.9/debianqueued b/tools/debianqueued-0.9/debianqueued index d6f2afdc..97359b0f 100755 --- a/tools/debianqueued-0.9/debianqueued +++ b/tools/debianqueued-0.9/debianqueued @@ -281,6 +281,8 @@ package main; ($main::progname = $0) =~ s,.*/,,; +my %packages = (); + # extract -r and -k args $main::arg = ""; if (@ARGV == 1 && $ARGV[0] =~ /^-[rk]$/) { @@ -790,6 +792,7 @@ sub process_changes($\@) { elsif (/^Source:\s*/i) { chomp( $pkgname = $' ); $pkgname =~ s/\s+$//; + $main::packages{$pkgname}++; } elsif (/^Files:/i) { while( ) { @@ -2078,6 +2081,7 @@ sub init_mail(;$) { $main::mail_addr = ""; $main::mail_text = ""; + %main::packages = (); $main::mail_subject = $file ? "Processing of $file" : ""; } @@ -2120,19 +2124,34 @@ sub send_mail($$$) { my $subject = shift; my $text = shift; - debug( "Sending mail to $addr" ); - debug( "executing $conf::mail -s '$subject' '$addr'" ); - if (!open( MAIL, "|$conf::mail -s '$subject' '$addr'" )) { - msg( "log", "Could not open pipe to $conf::mail: $!\n" ); - return 0; - } - print MAIL $text; - print MAIL "\nGreetings,\n\n\tYour Debian queue daemon\n"; - if (!close( MAIL )) { - msg( "log", "$conf::mail failed (exit status ", $? >> 8, ")\n" ); - return 0; - } - return 1; + my $package = join(' ', keys %main::packages); + + use Email::Send; + + my $message = <<'__MESSAGE__'; + To: $addr + From: dak@ftp-master.debian.org + Subject: $subject + X-Debian: DAK +__MESSAGE__ + + if (length $package) { + $message .= "X-Debian-Package: $package\n"; + } + + $message .= "\n$text"; + + my $mail = Email::Send->new; + for ( qw[Sendmail SMTP] ) { + $mail->mailer($_) and last if $mail->mailer_available($_); + } + + my $ret = $mail->send($message); + if ($ret && $ret !~ /Message sent/) { + return 0; + } + + return 1; } #