d9769c8717
From the ChangeLog: - IMPORTANT: Removed support for listening on ports under < 1024 - Support embedded NULLs in email data. - Fix problems with not listening properly when in daemon mode - Handle empty addresses properly in logs. - Don't let exchange send it's strange binary data through the proxy - Don't reject emails when server is overloaded or errors. - Don't reject emails when starting the filter command fails.
31 lines
633 B
Makefile
31 lines
633 B
Makefile
# $OpenBSD: Makefile,v 1.5 2005/11/03 18:43:01 naddy Exp $
|
|
|
|
COMMENT= "SMTP virus filter"
|
|
|
|
DISTNAME= clamsmtp-1.6
|
|
CATEGORIES= mail
|
|
|
|
HOMEPAGE= http://memberwebs.com/nielsen/software/clamsmtp/
|
|
|
|
MASTER_SITES= ${HOMEPAGE}
|
|
|
|
MAINTAINER= Simon Dassow <janus@errornet.de>
|
|
|
|
RUN_DEPENDS= ::security/clamav
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
WANTLIB= c pthread
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/clamsmtp
|
|
${INSTALL_DATA} ${WRKSRC}/doc/clamsmtpd.conf \
|
|
${PREFIX}/share/examples/clamsmtp
|
|
|
|
.include <bsd.port.mk>
|