badrcptto: remove spurious semicolon

This commit is contained in:
Matt Simerson 2012-06-03 21:00:14 -04:00 committed by Ask Bjørn Hansen
parent 086b31c546
commit c2d23306dc

View File

@ -60,7 +60,7 @@ sub hook_rcpt {
$line =~ s/^\s+//g; # trim leading whitespace
my ($bad, $reason) = split /\s+/, $line, 2;
next if ! $bad;
if ( $self->is_match( $to, lc($bad), $host ) ) {;
if ( $self->is_match( $to, lc($bad), $host ) ) {
if ( $reason ) {
return (DENY, "mail to $bad not accepted here");
}