diff options
author | erwin <erwin@FreeBSD.org> | 2006-12-26 00:52:04 +0800 |
---|---|---|
committer | erwin <erwin@FreeBSD.org> | 2006-12-26 00:52:04 +0800 |
commit | 999874541b9c95e955bb6b4bb56ed98619db58a3 (patch) | |
tree | 491f01d812acd094a2a043eb5802dfc296ebe73e /mail | |
parent | 55d2260ed6e4e3b10b597e16dfe378a2613345e1 (diff) | |
download | freebsd-ports-gnome-999874541b9c95e955bb6b4bb56ed98619db58a3.tar.gz freebsd-ports-gnome-999874541b9c95e955bb6b4bb56ed98619db58a3.tar.zst freebsd-ports-gnome-999874541b9c95e955bb6b4bb56ed98619db58a3.zip |
Add support for DKIM in addition to DomainKeys.
PR: 107191
Submitted by: Michael Scheidell <scheidell@secnap.net>
Diffstat (limited to 'mail')
-rw-r--r-- | mail/p5-Mail-SpamAssassin/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/mail/p5-Mail-SpamAssassin/Makefile b/mail/p5-Mail-SpamAssassin/Makefile index f6aadc35370f..e43b8b442fd2 100644 --- a/mail/p5-Mail-SpamAssassin/Makefile +++ b/mail/p5-Mail-SpamAssassin/Makefile @@ -34,6 +34,7 @@ CONTACT_ADDRESS?= The administrator of that system OPTIONS= AS_ROOT "Run spamd as root (recommended)" on \ DOMAINKEYS "DomainKeys support" off \ + DKIM "DomainKeys Identified Mail" off \ SSL "Build with SSL support for spamd/spamc" on \ GNUPG "Install GnuPG (for sa-update)" on \ MYSQL "Add MySQL support" off \ @@ -76,7 +77,11 @@ RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/Pg.pm:${PORTSDIR}/databases/p5-DBD-P RUN_DEPENDS+= razor-agents>=2.81:${PORTSDIR}/mail/razor-agents .endif -.if defined(WITH_DOMAINKEYS) +.if defined(WITH_DKIM) +RUN_DEPENDS+= ${SITE_PERL}/Mail/DKIM.pm:${PORTSDIR}/mail/p5-Mail-DKIM +.endif + +.if defined(WITH_DOMAINKEYS) || defined(WITH_DKIM) RUN_DEPENDS+= p5-Mail-DomainKeys>=0.80:${PORTSDIR}/mail/p5-Mail-DomainKeys .endif |