2003-04-15 19:39:27 +02:00
|
|
|
=head1 NAME
|
|
|
|
|
|
|
|
check_earlytalker - Check that the client doesn't talk before we send the SMTP banner
|
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
2004-08-01 09:08:07 +02:00
|
|
|
Checks to see if the remote host starts talking before we've issued a 2xx
|
|
|
|
greeting. If so, we're likely looking at a direct-to-MX spam agent which
|
|
|
|
pipelines its entire SMTP conversation, and will happily dump an entire spam
|
|
|
|
into our mail log even if later tests deny acceptance.
|
2003-04-15 19:39:27 +02:00
|
|
|
|
2004-08-01 09:08:07 +02:00
|
|
|
Depending on configuration, clients which behave in this way are either
|
|
|
|
immediately disconnected with a deny or denysoft code, or else are issued this
|
|
|
|
on all mail/rcpt commands in the transaction.
|
2003-04-15 19:39:27 +02:00
|
|
|
|
2004-08-01 09:08:07 +02:00
|
|
|
=head1 CONFIGURATION
|
2003-04-15 19:39:27 +02:00
|
|
|
|
2004-08-01 09:08:07 +02:00
|
|
|
=over 4
|
2003-04-15 19:39:27 +02:00
|
|
|
|
2004-08-01 09:08:07 +02:00
|
|
|
=item wait [integer]
|
|
|
|
|
|
|
|
The number of seconds to delay the initial greeting to see if the connecting
|
|
|
|
host speaks first. The default is 1.
|
|
|
|
|
|
|
|
=item action [string: deny, denysoft, log]
|
|
|
|
|
|
|
|
What to do when matching an early-talker -- the options are I<deny>,
|
|
|
|
I<denysoft> or I<log>.
|
|
|
|
|
|
|
|
If I<log> is specified, the connection will be allowed to proceed as normal,
|
|
|
|
and only a warning will be logged.
|
|
|
|
|
|
|
|
The default is I<denysoft>.
|
|
|
|
|
|
|
|
=item defer-reject [boolean]
|
|
|
|
|
|
|
|
When an early-talker is detected, if this option is set to a true value, the
|
|
|
|
SMTP greeting will be issued as usual, but all RCPT/MAIL commands will be
|
|
|
|
issued a deny or denysoft (depending on the value of I<action>). The default
|
|
|
|
is to react at the SMTP greeting stage by issuing the apropriate response code
|
|
|
|
and terminating the SMTP connection.
|
|
|
|
|
|
|
|
=back
|
2003-04-15 19:39:27 +02:00
|
|
|
|
|
|
|
=cut
|
|
|
|
|
2004-08-01 09:08:07 +02:00
|
|
|
use warnings;
|
|
|
|
use strict;
|
|
|
|
|
2003-04-15 19:39:27 +02:00
|
|
|
sub register {
|
2004-08-01 09:08:07 +02:00
|
|
|
my ($self, $qp, @args) = @_;
|
|
|
|
|
|
|
|
if (@args % 2) {
|
2005-03-08 23:58:09 +01:00
|
|
|
$self->log(LOGERROR, "Unrecognized/mismatched arguments");
|
|
|
|
return undef;
|
2004-08-01 09:08:07 +02:00
|
|
|
}
|
|
|
|
$self->{_args} = {
|
2005-03-08 23:58:09 +01:00
|
|
|
'wait' => 1,
|
|
|
|
'action' => 'denysoft',
|
|
|
|
'defer-reject' => 0,
|
|
|
|
@args,
|
2004-08-01 09:08:07 +02:00
|
|
|
};
|
2003-04-15 19:39:27 +02:00
|
|
|
$self->register_hook('connect', 'connect_handler');
|
2004-08-01 09:08:07 +02:00
|
|
|
$self->register_hook('mail', 'mail_handler')
|
|
|
|
if $self->{_args}->{'defer-reject'};
|
|
|
|
1;
|
2003-04-15 19:39:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
sub connect_handler {
|
|
|
|
my ($self, $transaction) = @_;
|
2005-05-09 15:43:40 +02:00
|
|
|
|
|
|
|
if ($self->qp->can_read($self->{_args}->{'wait'})) {
|
2005-03-08 23:58:09 +01:00
|
|
|
$self->log(LOGNOTICE, 'remote host started talking before we said hello');
|
2004-08-01 09:08:07 +02:00
|
|
|
if ($self->{_args}->{'defer-reject'}) {
|
2005-05-09 15:43:40 +02:00
|
|
|
$self->connection->notes('earlytalker', 1);
|
|
|
|
}
|
|
|
|
else {
|
2004-08-01 09:08:07 +02:00
|
|
|
my $msg = 'Connecting host started transmitting before SMTP greeting';
|
|
|
|
return (DENY,$msg) if $self->{_args}->{'action'} eq 'deny';
|
|
|
|
return (DENYSOFT,$msg) if $self->{_args}->{'action'} eq 'denysoft';
|
|
|
|
}
|
2005-05-09 15:43:40 +02:00
|
|
|
}
|
|
|
|
else {
|
2004-08-01 09:08:07 +02:00
|
|
|
$self->log(LOGINFO, 'remote host said nothing spontaneous, proceeding');
|
2003-04-15 19:39:27 +02:00
|
|
|
}
|
|
|
|
return DECLINED;
|
|
|
|
}
|
2004-08-01 09:08:07 +02:00
|
|
|
|
|
|
|
sub mail_handler {
|
|
|
|
my ($self, $txn) = @_;
|
|
|
|
my $msg = 'Connecting host started transmitting before SMTP greeting';
|
|
|
|
|
2005-03-08 23:58:09 +01:00
|
|
|
return DECLINED unless $self->connection->notes('earlytalker');
|
2004-08-01 09:08:07 +02:00
|
|
|
return (DENY,$msg) if $self->{_args}->{'action'} eq 'deny';
|
|
|
|
return (DENYSOFT,$msg) if $self->{_args}->{'action'} eq 'denysoft';
|
|
|
|
return DECLINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
1;
|
|
|
|
|