From: Vivek Khera (no email)
Date: Sun Dec 01 2002 - 23:27:34 EST
>>>>> "ES" == Elijah Savage, <Elijah> writes:
ES> All,
ES> I have recently tried postfix on FreeBSD 4.7 replacing sendmail and
ES> after reading Richards book and seeing it in action I like what I see so
ES> far. But I have rbl enable in my main.cf and I know mail is being
I hope you installed via the port. It tells you what changes to make
to your freebsd configs to make integration seamless.
As for finding rejects and such, the following is what I use in my
/etc/daily.local script. I get boatloads of rejections for relay
attempts, RBL blocks, etc, daily.
--cut here--
echo ""; echo "Scanning maillog for rejections:"
zgrep ': reject:' /var/log/maillog.0.gz | cut -d : -f 5- | sort | uniq -c
echo ""
echo ""; echo "Scanning maillog for errors:"
env GREP=egrep zgrep ': (warning|error|fatal|panic):' /var/log/maillog.0.gz | cut -d : -f 4- | sort | uniq -c
--cut here--
|
|
|