2012-06-22 11:38:01 +02:00
|
|
|
#!perl -w
|
2013-04-21 06:50:39 +02:00
|
|
|
|
2012-06-22 11:38:01 +02:00
|
|
|
=head1 NAME
|
|
|
|
|
|
|
|
smtp-forward
|
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
|
|
|
This plugin forwards the mail via SMTP to a specified server, rather than
|
|
|
|
delivering the email locally.
|
|
|
|
|
|
|
|
=head1 CONFIG
|
|
|
|
|
|
|
|
It takes one required parameter, the IP address or hostname to forward to.
|
|
|
|
|
|
|
|
queue/smtp-forward 10.2.2.2
|
|
|
|
|
|
|
|
Optionally you can also add a port:
|
|
|
|
|
|
|
|
queue/smtp-forward 10.2.2.2 9025
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
use Net::SMTP;
|
|
|
|
|
|
|
|
sub init {
|
2013-04-21 06:50:39 +02:00
|
|
|
my ($self, $qp, @args) = @_;
|
2012-06-22 11:38:01 +02:00
|
|
|
|
2013-04-21 06:50:39 +02:00
|
|
|
if (@args > 0) {
|
|
|
|
if ($args[0] =~ /^([\.\w_-]+)$/) {
|
|
|
|
$self->{_smtp_server} = $1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
die "Bad data in smtp server: $args[0]";
|
|
|
|
}
|
|
|
|
$self->{_smtp_port} = 25;
|
|
|
|
if (@args > 1 and $args[1] =~ /^(\d+)$/) {
|
|
|
|
$self->{_smtp_port} = $1;
|
|
|
|
}
|
|
|
|
$self->log(LOGWARN, "WARNING: Ignoring additional arguments.")
|
|
|
|
if (@args > 2);
|
2012-06-22 11:38:01 +02:00
|
|
|
}
|
|
|
|
else {
|
2013-04-21 06:50:39 +02:00
|
|
|
die("No SMTP server specified in smtp-forward config");
|
2012-06-22 11:38:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
sub hook_queue {
|
2013-04-21 06:50:39 +02:00
|
|
|
my ($self, $transaction) = @_;
|
|
|
|
|
|
|
|
$self->log(LOGINFO,
|
|
|
|
"forwarding to $self->{_smtp_server}:$self->{_smtp_port}");
|
|
|
|
my $smtp = Net::SMTP->new(
|
|
|
|
$self->{_smtp_server},
|
|
|
|
Port => $self->{_smtp_port},
|
|
|
|
Timeout => 60,
|
|
|
|
Hello => $self->qp->config("me"),
|
|
|
|
)
|
|
|
|
|| die $!;
|
|
|
|
$smtp->mail($transaction->sender->address || "")
|
|
|
|
or return (DECLINED, "Unable to queue message ($!)");
|
|
|
|
for ($transaction->recipients) {
|
|
|
|
$smtp->to($_->address)
|
|
|
|
or return (DECLINED, "Unable to queue message ($!)");
|
|
|
|
}
|
|
|
|
$smtp->data() or return (DECLINED, "Unable to queue message ($!)");
|
|
|
|
$smtp->datasend($transaction->header->as_string)
|
|
|
|
or return (DECLINED, "Unable to queue message ($!)");
|
|
|
|
$transaction->body_resetpos;
|
|
|
|
while (my $line = $transaction->body_getline) {
|
|
|
|
$smtp->datasend($line)
|
|
|
|
or return (DECLINED, "Unable to queue message ($!)");
|
|
|
|
}
|
|
|
|
$smtp->dataend() or return (DECLINED, "Unable to queue message ($!)");
|
|
|
|
$smtp->quit() or return (DECLINED, "Unable to queue message ($!)");
|
|
|
|
$self->log(LOGINFO, "finished queueing");
|
|
|
|
return (OK, "Queued!");
|
2012-06-22 11:38:01 +02:00
|
|
|
}
|