This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch x2gobugs in repository debbugs. from 0acf959 Avoid httpd log messages of missing »dot« executable. Add graphviz to Recommends: field of bin:package libdebbugs-perl. new 448e595 Avoid MTA failures, if $config{subscription_domain} is defined as empty string. (Closes: #815342)." The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: Debbugs/Recipients.pm | 3 ++- debian/changelog | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) -- Alioth's /srv/git/code.x2go.org/debbugs.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/debbugs.git
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