---
plugins/check_badrcptto | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/plugins/check_badrcptto b/plugins/check_badrcptto
index fdea8e8..7b5f7d9 100644
--- a/plugins/check_badrcptto
+++ b/plugins/check_badrcptto
@@ -63,7 +63,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");
}
--
1.7.9.6