1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
|
#!/usr/bin/perl
##
## Sendmail mailer for Mailman
##
## Simulates these aliases:
##
##testlist: "|/home/mailman/mail/mailman post testlist"
##testlist-admin: "|/home/mailman/mail/mailman admin testlist"
##testlist-bounces: "|/home/mailman/mail/mailman bounces testlist"
##testlist-confirm: "|/home/mailman/mail/mailman confirm testlist"
##testlist-join: "|/home/mailman/mail/mailman join testlist"
##testlist-leave: "|/home/mailman/mail/mailman leave testlist"
##testlist-owner: "|/home/mailman/mail/mailman owner testlist"
##testlist-request: "|/home/mailman/mail/mailman request testlist"
##testlist-subscribe: "|/home/mailman/mail/mailman subscribe testlist"
##testlist-unsubscribe: "|/home/mailman/mail/mailman unsubscribe testlist"
##owner-testlist: testlist-owner
#### Begin configuration here ####
$MMWRAPPER = "/usr/lib/mailman/mail/mailman";
$MMLISTDIR = "/var/lib/mailman/lists";
$SENDMAIL = "/usr/lib/sendmail -oem -oi";
$VERSION = '$Id: mm-handler 2.1.10 2008-04-14 00:00:00 $';
## Comment this if you offer local user addresses.
$NOUSERS = "\nPersonal e-mail addresses are not offered by this server.";
# set for debugging....
$DEBUG = 0;
# Define the set of actions you want to allow (that is, which aliases
# you want to emulate). This should be a subset of @ValidActions,
# defined below, plus the special "post" action.
#@ApprovedActions = qw(admin bounces confirm join leave
# owner request subscribe unsubscribe);
# aliases removed to suppress spam backscatter
@ApprovedActions = qw(bounces confirm owner request post);
# Allow backscatter for unapproved actions?
$BounceUnapproved = 0;
# Allow backscatter for undefined lists?
$BounceNonlist = 0;
#### End of configuration ####
use FileHandle;
use Sys::Hostname;
use Socket;
use Unix::Syslog qw(:macros);
use Unix::Syslog qw(:subs);
use File::Basename;
my $syslog_ident = basename $0;
my $syslog_options = LOG_PID;
my $syslog_facility = LOG_MAIL;
# These are the listname-action actions defined by the mailman wrapper
# program. Do not alter this unless a new Mailman version changes the
# set of supported actions.
@ValidActions = qw(admin bounces confirm join leave
owner request subscribe unsubscribe);
($VERS_STR = $VERSION) =~ s/^\$\S+\s+(\S+)(?:,v)?\s+(\S+\s+\S+\s+\S+).*/\1 \2/;
$BOUNDARY = sprintf("%08x-%d", time, time % $$);
## Informative, non-standard rejection letter
sub mail_error {
my ($in, $to, $list, $server, $reason) = @_;
my $sendmail;
if ($server && $server ne "") {
$servname = $server;
} else {
$servname = "This server";
$server = &get_ip_addr;
}
#$sendmail = new FileHandle ">/tmp/mm-$$";
$sendmail = new FileHandle "|$SENDMAIL $to";
if (!defined($sendmail)) {
syslog LOG_ERR, "cannot exec \"$SENDMAIL\"";
exit (-1);
}
$sendmail->print ("From: MAILER-DAEMON\@$server
To: $to
Subject: Returned mail: List unknown
Mime-Version: 1.0
Content-type: multipart/mixed; boundary=\"$BOUNDARY\"
Content-Disposition: inline
--$BOUNDARY
Content-Type: text/plain; charset=us-ascii
Content-Description: Error processing your mail
Content-Disposition: inline
Your mail for $list could not be sent:
$reason
For a list of publicly-advertised mailing lists hosted on this server,
visit this URL:
http://$server/
If this does not resolve your problem, you may write to:
postmaster\@$server
or
mailman-owner\@$server
$servname delivers e-mail to registered mailing lists
and to the administrative addresses defined and required by IETF
Request for Comments (RFC) 2142 [1].
$NOUSERS
The Internet Engineering Task Force [2] (IETF) oversees the development
of open standards for the Internet community, including the protocols
and formats employed by Internet mail systems.
For your convenience, your original mail is attached.
[1] Crocker, D. \"Mailbox Names for Common Services, Roles and
Functions\". http://www.ietf.org/rfc/rfc2142.txt
[2] http://www.ietf.org/
--$BOUNDARY
Content-Type: message/rfc822
Content-Description: Your undelivered mail
Content-Disposition: attachment
");
while ($_ = <$in>) {
$sendmail->print ($_);
}
$sendmail->print ("\n");
$sendmail->print ("--$BOUNDARY--\n");
close($sendmail);
}
## Get my IP address, in case my sendmail doesn't tell me my name.
sub get_ip_addr {
my $host = hostname;
my $ip = gethostbyname($host);
return inet_ntoa($ip);
}
## Split an address into its base list name and the appropriate command
## for the relevant function.
sub split_addr {
my ($addr) = @_;
my ($list, $cmd);
if ($addr =~ /(.*)-([^-]+)\+.*$/) {
$list = $1;
$cmd = "$2";
} elsif ($addr =~ /(.*)-([^-]+)$/) {
$list = $1;
$cmd = $2;
}
else {
return ($addr, "post");
}
if ($list eq "owner") {
# Allow owner-listname to work as listname-owner
$list = $cmd;
$cmd = "owner";
} elsif (! grep /^$cmd$/, @ValidActions) {
# If an undefined action, restore list name
$list = $addr;
$cmd = "post";
}
## Otherwise use $list and $cmd as already assigned
return ($list, $cmd);
}
## Determine whether a list is defined in Mailman.
sub list_exists {
my ($name) = @_;
return 1 if (-f "$MMLISTDIR/$list/config.pck");
return 1 if (-f "$MMLISTDIR/$list/config.db");
return 0;
}
## The time, formatted as for an mbox's "From_" line.
sub mboxdate {
my ($time) = @_;
my @days = qw(Sun Mon Tue Wed Thu Fri Sat);
my @months = qw(Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec);
my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday, $isdst) =
localtime($time);
## Two-digit year handling complies with RFC 2822 (section 4.3),
## with the addition that three-digit years are accommodated.
if ($year < 50) {
$year += 2000;
} elsif ($year < 1900) {
$year += 1900;
}
return sprintf ("%s %s %2d %02d:%02d:%02d %d",
$days[$wday], $months[$mon], $mday,
$hour, $min, $sec, $year);
}
BEGIN: {
openlog $syslog_ident, $syslog_options, $syslog_facility;
$sender = undef;
$server = undef;
@to = ();
while ($#ARGV >= 0) {
if ($ARGV[0] eq "-r") {
$sender = $ARGV[1];
shift @ARGV;
} elsif (!defined($server)) {
$server = $ARGV[0];
} else {
push(@to, $ARGV[0]);
}
shift @ARGV;
}
if ($DEBUG) {
my $to = join(',', @to);
syslog LOG_INFO, "to: $to; sender: $sender; server: $server";
}
ADDR: for $addr (@to) {
$prev = undef;
$list = $addr;
$was_to = $addr;
$was_to .= "\@$server" if ("$server" ne "");
$cmd= "post";
($list, $cmd) = &split_addr($list);
if ($DEBUG) {
syslog LOG_INFO, "list: $list; cmd: $cmd";
}
if (! &list_exists($list)) {
syslog LOG_INFO, "no list named \"$list\" is known by $server";
if ($BounceNonlist) {
mail_error(\*STDIN, $sender, $was_to, $server,
"no list named \"$list\" is known by $server");
}
next ADDR;
}
if (! grep /^$cmd$/, @ApprovedActions) {
syslog LOG_INFO, "$cmd is not a recognized action for $list";
if ($BounceUnapproved) {
mail_error(\*STDIN, $sender, $was_to, $server,
"$cmd is not a recognized action for $list");
}
next ADDR;
}
if ($DEBUG) {
syslog LOG_INFO, "invoking $MMWRAPPER";
}
$wrapper = new FileHandle "|$MMWRAPPER $cmd $list";
if (!defined($wrapper)) {
## Defer?
syslog LOG_ERR, "cannot exec ",
"\"$MMWRAPPER $cmd $list\": deferring";
exit (-1);
}
# Don't need these without the "n" flag on the mailer def....
#$date = &mboxdate(time);
#$wrapper->print ("From $sender $date\n");
# ...because we use these instead.
$from_ = <STDIN>;
$wrapper->print ($from_);
$wrapper->print ("X-Mailman-Handler: $VERSION\n");
while (<STDIN>) {
$wrapper->print ($_);
}
close($wrapper);
if ($DEBUG) {
syslog LOG_INFO, "message processed";
}
}
}
|