8fcb46177b
Hecker) git-svn-id: https://svn.perl.org/qpsmtpd/branches/0.3x@631 958fd67b-6ff1-0310-b445-bb7760255be9
20 lines
713 B
Plaintext
20 lines
713 B
Plaintext
# this plugin checks the badrcptto config (like badmailfrom for rcpt address)
|
|
use Qpsmtpd::DSN;
|
|
|
|
sub hook_rcpt {
|
|
my ($self, $transaction, $recipient, %param) = @_;
|
|
my @badrcptto = $self->qp->config("badrcptto") or return (DECLINED);
|
|
return (DECLINED) unless $recipient->host && $recipient->user;
|
|
my $host = lc $recipient->host;
|
|
my $from = lc($recipient->user) . '@' . $host;
|
|
for my $bad (@badrcptto) {
|
|
$bad = lc $bad;
|
|
$bad =~ s/^\s*(\S+)/$1/;
|
|
return Qpsmtpd::DSN->no_such_user("mail to $bad not accepted here")
|
|
if $bad eq $from;
|
|
return Qpsmtpd::DSN->no_such_user("mail to $bad not accepted here")
|
|
if substr($bad,0,1) eq '@' && $bad eq "\@$host";
|
|
}
|
|
return (DECLINED);
|
|
}
|