OSEC

Neohapsis is currently accepting applications for employment. For more information, please visit our website www.neohapsis.com or email hr@neohapsis.com
 
From: Vivek Khera (khera_at_kcilink.com)
Date: Sun Dec 01 2002 - 22:27:34 CST

  • Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

    >>>>> "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--