You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/mail-mta/qpsmtpd/files/qpsmtpd-0.40-badrcptto_allo...

11 lines
498 B

--- qpsmtpd-0.40/plugins/check_badrcptto.badrcptto_allowrelay 2007-06-14 11:57:24.000000000 -0600
+++ qpsmtpd-0.40/plugins/check_badrcptto 2007-06-14 13:26:42.000000000 -0600
@@ -3,6 +3,7 @@
sub hook_rcpt {
my ($self, $transaction, $recipient, %param) = @_;
+ return (DECLINED) if $self->qp->connection->relay_client;
my @badrcptto = $self->qp->config("badrcptto") or return (DECLINED);
return (DECLINED) unless $recipient->host && $recipient->user;
my $host = lc $recipient->host;