Mark Sapiro schrieb:
So there was a prior server involved. Are you sure the messages with
prefixed subject are not coming from that server, or if they are
coming from the new server, that the admin interface isn't going to
the old server.
Someone has put a script into the alias DB.
#!/usr/bin/perl
use Date::Format;
@lt = localtime(time);
$template="%Y-%m";
$datestr=time2str($template, time);
$pipe="|/var/lib/mailman/mail/wrapper post listname";
$counterfile="/var/local/MAInfocounter";
open(CF,"+<",$counterfile);
while (<CF>){
$mano=$_;
}
$mano++;
print $mano;
seek(CF,0,0);
print CF $mano;
close(CF);
open(PH,$pipe) || die "cannot open Pipe";
while (<STDIN>) {
$_ =~ s/^Subject: /Subject: [Infolist $datestr Nr.$mano] /;
print PH $_;
}
close(PH);
------------------------------------------------------
Mailman-Users mailing list
[email protected]
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe:
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org
Security Policy:
http://www.python.org/cgi-bin/faqw-mm.py?req=show&file=faq01.027.htp