Merge pull request #163 from jaredj/silence-warning

Silence a warning in plugins/greylisting
This commit is contained in:
Matt Simerson 2014-12-05 09:36:55 -08:00
commit f276afc41c
1 changed files with 1 additions and 1 deletions

View File

@ -346,7 +346,7 @@ sub greylist {
$self->log(LOGDEBUG,
"config: "
. join(',',
map { $_ . '=' . $config->{$_} } sort keys %$config)
map { $_ . '=' . (defined $config->{$_} ? $config->{$_} : '') } sort keys %$config)
);
return DECLINED if $self->exclude();