a3b9424f92
While here add PKGMANDIR support. Changes since last packaged version (1.0.1): Version 1.1.1 - 11 November 2005 -------------------------------- - Bug fix; minor memory leak. - Bug fix; on some systems, failure resulted while disconnecting from all the servers, during the shutdown phase just before exiting. Version 1.1 - 24 August 2005 ---------------------------- - Addition of the list() and lsub() commands, that make it possible to get a list of the available mailboxes or only of those that are subscribed. Implementation of the IMAP LIST/LSUB commands, with additional support for the IMAP CHILDREN (RFC 3348) and IMAP NAMESPACE (RFC 2342) extensions. - New program option to execute a string from the command line, without loading a configuration file. - New program option to enter interactive mode after executing the configuration file or the command line. - Servers that reply with multiple SEARCH responses are taken into consideration. - Bug fix; failure to parse the response to fetchfast() that some mail servers sent. - Bug fix; in some systems and when in debug mode, an empty namespace caused program fault.
23 lines
629 B
Makefile
23 lines
629 B
Makefile
# $NetBSD: Makefile,v 1.20 2006/01/15 14:28:07 seb Exp $
|
|
|
|
DISTNAME= imapfilter-1.1.1
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://imapfilter.hellug.gr/source/
|
|
|
|
MAINTAINER= tech-pkg@NetBSD.org
|
|
HOMEPAGE= http://imapfilter.hellug.gr/
|
|
COMMENT= Mail filtering utility for the IMAP
|
|
|
|
|
|
LDFLAGS.SunOS+= -lsocket -lnsl
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/imapfilter
|
|
.for f in sample.config.lua sample.extend.lua
|
|
${INSTALL_DATA} ${WRKSRC}/${f} \
|
|
${PREFIX}/share/examples/imapfilter
|
|
.endfor
|
|
|
|
.include "../../lang/lua/buildlink3.mk"
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|