This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch x2gobugs in repository debbugs. commit 448e59509e5040429a88b55bfd78e73ff05e332c Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Mon Feb 22 16:24:47 2016 +0100 Avoid MTA failures, if $config{subscription_domain} is defined as empty string. (Closes: #815342)." --- Debbugs/Recipients.pm | 3 ++- debian/changelog | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Debbugs/Recipients.pm b/Debbugs/Recipients.pm index ae739e9..36430e7 100644 --- a/Debbugs/Recipients.pm +++ b/Debbugs/Recipients.pm @@ -116,7 +116,8 @@ sub add_recipients { my $ref = $param{data}{bug_num}; for my $p (splitpackages($param{data}{package})) { $p = lc($p); - if (defined $config{subscription_domain}) { + if (defined $config{subscription_domain} and + length $config{subscription_domain}) { my @source_packages = binary_to_source(binary => $p, source_only => 1, ); diff --git a/debian/changelog b/debian/changelog index 85114a1..0660c7d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -82,6 +82,8 @@ debbugs (2.4.2~exp2) UNRELEASED; urgency=low + usr/share/man/man3/Debbugs::Status.3pm.gz * Raise Standards to 3.9.4 (after fixing several lintian issues). * Pass param bug=<NNN> to bugreport.html call in bugreport.cgi. + * Avoid MTA failures, if $config{subscription_domain} is defined as empty + string. (Closes: #815342)." -- Don Armstrong <don@debian.org> Wed, 25 Aug 2010 01:57:38 -0700 -- Alioth's /srv/git/code.x2go.org/debbugs.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/debbugs.git