Hi y'all!
I'm running a Postfix mailsystem on our server, and the daily log is 10 megs and counting. The reason is a flow of spammers trying to mail us spam alphabetically (or so it seems), by trying different names.
The approaching hosts are all different, and are all valid, as far as I've tested.
This is a typical approach, with reject from Postfix:
Mar 24 16:36:12 hst postfix/smtpd[5992]: [ID 197553 mail.info] connect from jcmwsm02a.mwjc.easylink.com[165.251.41.49]
Mar 24 16:36:12 hst postfix/smtpd[5992]: [ID 197553 mail.info] 694396A113: client=jcmwsm02a.mwjc.easylink.com[165.251.41.49]
Mar 24 16:36:12 hst postfix/smtpd[5992]: [ID 197553 mail.info] 694396A113: reject: RCPT from jcmwsm02a.mwjc.easylink.com[165.251.41.49]: 450 <Stacey@boomdesign.no>: User unknown in local recipient table; from=<> to=<Stacey@boomdesign.no> proto=ESMTP helo=<jcmwsm02.mwjc.easylink.com>
The strange thing here is that it doesn't look like an alphabetical scan, Stacey here is one of the shortest names tried. Usually the requested mailuser is like PetroniusBWallington@boomdesign.no or WilliamHendersonWalker@boomdesign.no.
The frequency of rejects in the log file:
root@hst [/var/logger/mail]# cat the_mail_log.20040323 | grep -c reject
12474
which, by php :
$n=12474;
$day=86400;
$res=$day/$n;
gives us an approach every 6.92640692641 second.
This has been going on since mid-february, and the approaches has increased every day.
Anyone having similar problems, or seen anything like it?
Checked around, but haven't got any anwers so far.
knutm :-)