X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=tools%2Fdebianqueued-0.9%2Fdebianqueued;h=07f378446d3b998e5fe47455d0f345c51314b1da;hb=99c399d8d8d1c30cfb4921a09f807365414a4112;hp=d58889f057e05a1afc44a4ac262fed0c131cc459;hpb=a9123bdcda02874f089209a79cea9eadfa4a41a4;p=dak.git diff --git a/tools/debianqueued-0.9/debianqueued b/tools/debianqueued-0.9/debianqueued index d58889f0..07f37844 100755 --- a/tools/debianqueued-0.9/debianqueued +++ b/tools/debianqueued-0.9/debianqueued @@ -241,7 +241,7 @@ require 5.002; use strict; use POSIX; -use POSIX qw( sys_stat_h sys_wait_h signal_h ); +use POSIX qw( strftime sys_stat_h sys_wait_h signal_h ); use Net::Ping; use Net::FTP; use Socket qw( PF_INET AF_INET SOCK_STREAM ); @@ -1169,6 +1169,8 @@ sub process_commands($) { if ($pgplines < 3) { msg( "log,mail", "$commands isn't signed with PGP/GnuPG\n" ); + msg( "mail", "or the uploaded file is broken. Make sure to transfer in binary mode\n" ); + msg( "mail", "or better yet - use dcut for commands files\n"); goto remove; } @@ -2132,10 +2134,12 @@ sub send_mail($$$) { $Email::Send::Sendmail::SENDMAIL = $conf::mail; } + my $date = sprintf "%s", strftime("%a, %d %B %Y %T %z", (localtime(time))); my $message = <<__MESSAGE__; To: $addr From: Archive Administrator Subject: $subject +Date: $date X-Debian: DAK __MESSAGE__