OSEC

Neohapsis is currently accepting applications for employment. For more information, please visit our website www.neohapsis.com or email hr@neohapsis.com
 
From: Elijah Savage III (esavage_at_digitalrage.org)
Date: Sun Dec 01 2002 - 22:48:32 CST

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

    Thank you much for all the replies. If you are talking about this
    message below as far as doing this after install sure I did :). New to
    postfix but not BSD.

    Thank you for your help I will give this a try.

    ===> Generating temporary packing list
    Would you like to activate Postfix in /etc/mail/mailer.conf [n]? y
    If you have postfix configured in your /etc/mail/mailer.conf (answered
    yes to
    the previous question) and would like to enable postfix to start at boot
    time,
    please set these variables in your /etc/rc.conf file:

    sendmail_enable="YES"
    sendmail_flags="-bd"
    sendmail_outbound_enable="NO"
    sendmail_submit_enable="NO"
    sendmail_msp_queue_enable="NO"

    This will disable Sendmail completely.

    Also, you may wish to disable some Sendmail-specific daily maintenance
    routines in your /etc/periodic.conf file:

    daily_status_mail_rejects_enable="NO"

    daily_status_include_submit_mailq="NO"
    daily_submit_queuerun="NO"

    If you are using SASL, you need to make sure that postfix has access to
    read
    the sasldb file. This is accomplished by adding postfix to group mail
    and
    making the /usr/local/etc/sasldb* file(s) readable by group mail (this
    should
    be the default for new installs).
    ===> Compressing manual pages for postfix-1.1.11,1
    ===> Registering installation for postfix-1.1.11,1
    ===> SECURITY NOTE:
          This port has installed the following binaries which execute with
          increased privileges.
    503445 188 -rwxr-sr-x 1 root maildrop 94854
    Jul 13 17:09 /usr/local/sbin/postdrop
    503446 168 -rwxr-sr-x 1 root maildrop 84305
    Jul 13 17:09 /usr/local/sbin/postqueue

          If there are vulnerabilities in these programs there may be a
    security
          risk to the system. FreeBSD makes no guarantee about the security
    of
          ports included in the Ports Collection. Please type 'make
    deinstall'
          to deinstall the port if this is a concern.

          For more information, and contact details about the security
          status of this software, see the following webpage:
    http://www.postfix.org/

    -----Original Message-----
    From: Vivek Khera [mailto:kherakcilink.com]
    Sent: Sunday, December 01, 2002 11:28 PM
    To: Elijah Savage III
    Cc: postfix-userspostfix.org
    Subject: Re: Freebsd Postifx Daily messages

    >>>>> "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
    ES> see so far. But I have rbl enable in my main.cf and I know mail is
    ES> 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--