c508b4ad59
ok brad (MAINTAINER) |
||
---|---|---|
.. | ||
DESCR | ||
PLIST | ||
README |
$OpenBSD: README,v 1.1 2010/11/16 09:17:55 jasper Exp $ The MailScanner port is using the original MailScanner tarball from www.mailscanner.info. This tarball puts all the MailScanner files in subdirectories bin MailScanner binary / MailScanner start script etc. etc MailScanner config files / rules / report templates lib Virus wrapper and autoupdate scripts / MailScanner Perl libraries docs Documentation var pid file In order to make this OpenBSD compliant the port installs those files in the following directories: ${TRUEPREFIX}/libexec/MailScanner MailScanner binary, virus wrapper/autoupdate ${TRUEPREFIX}/lib/MailScanner MailScanner Perl libraries ${TRUEPREFIX}/share/MailScanner MailScanner report templates ${TRUEPREFIX}/share/doc/MailScanner Documentation ${TRUEPREFIX}/share/examples/MailScanner Example files ${SYSCONFDIR}/MailScanner MailScanner config files / rules See http://www.mailscanner.info and the sample configuration files in ${SYSCONFDIR}/MailScanner for further instructions. To activate this package, you must do the following for sendmail: 1. Set the following in your sendmail.mc file: define(`confDELIVER_MODE',`queue') define(`confPRIVACY_FLAGS',`noetrn') (if you do not have a sendmail.mc file, use /usr/share/sendmail/cf/openbsd-proto.mc) and regenerate your sendmail.cf (if you do not know how, try: m4 /usr/share/sendmail/m4/cf.m4 sendmail.mc > test.cf ) 2. Put the following line in /etc/rc.conf.local: sendmail_flags="-L sm-mta -bd -OQueueDirectory=/var/spool/mqueue.in" 3. Add the following to /etc/rc.local: # MailScanner if [ -x /usr/sbin/sendmail ]; then echo -n ' sm-mta-queue'; /usr/sbin/sendmail -q30s -L sm-mta-queue fi # MailScanner outbound queue if [ -x ${TRUEPREFIX}/bin/check_mailscanner ]; then echo -n ' MailScanner'; ${TRUEPREFIX}/bin/check_mailscanner fi 4. Add the following to root's crontab: # Check the status of MailScanner every hour 0 * * * * ${TRUEPREFIX}/bin/check_mailscanner -q