Fix missing assignment in ident/p0f rcpt_handler()
This commit is contained in:
parent
ec470ed08e
commit
1e2c0a6f78
@ -215,7 +215,7 @@ sub rcpt_handler {
|
|||||||
}
|
}
|
||||||
|
|
||||||
sub check_genre {
|
sub check_genre {
|
||||||
my ( $self, $rcpt );
|
my ( $self, $rcpt ) = @_;
|
||||||
my $p0f = $self->connection->notes('p0f') or return 0;
|
my $p0f = $self->connection->notes('p0f') or return 0;
|
||||||
return 0 if $self->exclude_connection();
|
return 0 if $self->exclude_connection();
|
||||||
return 0 if $self->exclude_recipient($rcpt);
|
return 0 if $self->exclude_recipient($rcpt);
|
||||||
|
Loading…
Reference in New Issue
Block a user