2012-04-29 10:35:59 +02:00
|
|
|
#!perl -w
|
2012-04-08 02:11:16 +02:00
|
|
|
|
|
|
|
=head1 NAME
|
|
|
|
|
|
|
|
dont_require_anglebrackets
|
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
|
|
|
|
accept addresses in MAIL FROM:/RCPT TO: commands without surrounding <>
|
|
|
|
|
2012-04-29 05:46:15 +02:00
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
|
|
|
RFC821 requires that email addresses presented during the SMTP conversation
|
|
|
|
be enclosed in angle brackets. Like this:
|
|
|
|
|
|
|
|
MAIL FROM:<user@example.com>
|
|
|
|
|
|
|
|
This plugin relaxes that requirement, accepting messages in this format:
|
|
|
|
|
|
|
|
MAIL FROM:user@example.com
|
|
|
|
|
2012-04-08 02:11:16 +02:00
|
|
|
=cut
|
|
|
|
|
2006-04-07 20:58:02 +02:00
|
|
|
sub hook_mail_pre {
|
|
|
|
my ($self,$transaction, $addr) = @_;
|
|
|
|
unless ($addr =~ /^<.*>$/) {
|
|
|
|
$addr = "<".$addr.">";
|
|
|
|
}
|
|
|
|
return (OK, $addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
sub hook_rcpt_pre {
|
|
|
|
my ($self,$transaction, $addr) = @_;
|
|
|
|
unless ($addr =~ /^<.*>$/) {
|
|
|
|
$addr = "<".$addr.">";
|
|
|
|
}
|
|
|
|
return (OK, $addr);
|
|
|
|
}
|