90daeb3786
The great plugin renaming in the name of inheritance and standardization commit. 1. new concept of standard hook_ names. 2. Plugin::init 3. renamed many subroutines in plugins (and cleaned up register subs) 4. updated README.plugins git-svn-id: https://svn.perl.org/qpsmtpd/trunk@479 958fd67b-6ff1-0310-b445-bb7760255be9
19 lines
647 B
Plaintext
19 lines
647 B
Plaintext
# this plugin checks the badrcptto config (like badmailfrom for rcpt address)
|
|
|
|
sub hook_rcpt {
|
|
my ($self, $transaction, $recipient) = @_;
|
|
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 (DENY, "mail to $bad not accepted here")
|
|
if $bad eq $from;
|
|
return (DENY, "mail to $bad not accepted here")
|
|
if substr($bad,0,1) eq '@' && $bad eq "\@$host";
|
|
}
|
|
return (DECLINED);
|
|
}
|