rcpt_handler requires a Qpsmtpd::Address object not just the bare address
git-svn-id: https://svn.perl.org/qpsmtpd/trunk@368 958fd67b-6ff1-0310-b445-bb7760255be9
This commit is contained in:
parent
d0b9558ce9
commit
d790bd519d
@ -18,8 +18,10 @@ sub test_local {
|
||||
|
||||
sub test_returnval {
|
||||
my $self = shift;
|
||||
|
||||
my ($ret, $note) = $self->rcpt_handler($self->qp->transaction, 'rcpt@example.com');
|
||||
|
||||
my $address = Qpsmtpd::Address->parse('<rcpt@example.com>');
|
||||
my ($ret, $note) = $self->rcpt_handler($self->qp->transaction,
|
||||
$address);
|
||||
is($ret, DENY, "Check we got a DENY");
|
||||
print("# dnsbl result: $note\n");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user