pkgsrc/mail/ingo/options.mk
adrianp 6fb87d04db Ingo, the "Email Filter Rules Manager", started as a frontend for the Sieve
filter language, and is now a generic and complete filter rule frontend that
currently is able to create Sieve, procmail, maildrop, and IMAP filter rules.
The IMAP filter driver translates the filter rules on demand to IMAP commands,
executed via PHP's IMAP extension and has replaced IMP's internal filtering
code. It is now the default filtering agent in IMP H3 (4.x).
2006-03-31 22:06:34 +00:00

20 lines
460 B
Makefile

# $NetBSD: options.mk,v 1.1.1.1 2006/03/31 22:06:34 adrianp Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.ingo
PKG_SUPPORTED_OPTIONS= sieve imap
.include "../../mk/bsd.options.mk"
###
### Bring in support for the sieve filtering language
###
.if !empty(PKG_OPTIONS:Msieve)
DEPENDS+= pear-Net_Sieve>=1.0.0:../../net/pear-Net_Sieve
.endif
###
### Bring in support for an IMAP server
###
.if !empty(PKG_OPTIONS:Mimap)
DEPENDS+= php-imap>4.3.3:../../mail/php-imap
.endif