This is an automated email from the git hooks/post-receive script. jamessan pushed a commit to branch master in repository devscripts.
commit 348da804521a73dbb23ffaa5f246b38274bd9656 Author: Guillem Jover <[email protected]> Date: Fri Jun 20 09:42:56 2014 +0200 nmudiff: Send control messages inline Do not Bcc control messages to the control@ address, we can just send them inline now, with the Control field in the pseudo-header. Signed-off-by: James McCoy <[email protected]> --- debian/changelog | 4 ++++ scripts/nmudiff.sh | 8 ++------ 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/debian/changelog b/debian/changelog index c05636a..eb3c624 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,7 +1,11 @@ devscripts (2.14.6) UNRELEASED; urgency=medium + [ Benjamin Drung ] * suspicious-source: Add image/tiff to whitelisted mime-types. + [ Guillem Jover ] + * nmudiff: Send control messages inline. (Closes: #752152) + -- Benjamin Drung <[email protected]> Wed, 18 Jun 2014 14:31:22 +0200 devscripts (2.14.5) unstable; urgency=medium diff --git a/scripts/nmudiff.sh b/scripts/nmudiff.sh index dc827a1..b983ec2 100755 --- a/scripts/nmudiff.sh +++ b/scripts/nmudiff.sh @@ -322,20 +322,16 @@ else TO_ADDRESSES_MUTT="$TO_ADDRESSES_MUTT [email protected]" if [ "`bts select bugs:$b tag:patch`" != "$b" ]; then TAGS="$TAGS -tags $b + patch" +Control: tags $b + patch" fi if [ "$NMUDIFF_DELAY" != "0" ] && [ "`bts select bugs:$b tag:pending`" != "$b" ]; then TAGS="$TAGS -tags $b + pending" +Control: tags $b + pending" fi done TO_ADDRESSES_SENDMAIL=$(echo "$TO_ADDRESSES_SENDMAIL" | tail -n +2) if [ "$TAGS" != "" ]; then TAGS=$(echo "$TAGS" | tail -n +2) - TAGS="$TAGS -thanks" - BCC_ADDRESS_SENDMAIL="[email protected]" - BCC_ADDRESS_MUTT="-b [email protected]" fi fi -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/collab-maint/devscripts.git _______________________________________________ devscripts-devel mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/devscripts-devel
