whitelist: added debug log message & std plugin

entries.
This commit is contained in:
Matt Simerson 2012-11-14 15:24:06 -05:00
parent c1694b2e81
commit 51f5c887db

View File

@ -94,6 +94,12 @@ automatically allow relaying from that IP.
=cut =cut
use strict;
use warnings;
use lib 'lib';
use Qpsmtpd::Constants;
my $VERSION = 0.02; my $VERSION = 0.02;
# Default is to merge whitelists in per_recipient mode # Default is to merge whitelists in per_recipient mode
@ -144,6 +150,7 @@ sub check_host {
return OK; return OK;
} }
} }
$self->log(LOGDEBUG, "skip: $ip is not whitelisted");
return DECLINED; return DECLINED;
} }