diff options
author | garga <garga@FreeBSD.org> | 2005-09-02 00:56:56 +0800 |
---|---|---|
committer | garga <garga@FreeBSD.org> | 2005-09-02 00:56:56 +0800 |
commit | 0348ebdc3dede0753d94f9786b7300e73916d57c (patch) | |
tree | 1186ab500134d2af47631c6939c7020097d44ea4 /mail/qmail/Makefile | |
parent | bcef00b8675a5111452d39a403418c5bb4fa15e7 (diff) | |
download | freebsd-ports-gnome-0348ebdc3dede0753d94f9786b7300e73916d57c.tar.gz freebsd-ports-gnome-0348ebdc3dede0753d94f9786b7300e73916d57c.tar.zst freebsd-ports-gnome-0348ebdc3dede0753d94f9786b7300e73916d57c.zip |
- Add one more OPTION to qmail-smtp_auth+tls slave port, to apply a
custom version of maxrcpt patch made by Ederson Chimbida <chimbida@gmail.com>
Diffstat (limited to 'mail/qmail/Makefile')
-rw-r--r-- | mail/qmail/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/mail/qmail/Makefile b/mail/qmail/Makefile index 996a4712c601..05aa4ea2a239 100644 --- a/mail/qmail/Makefile +++ b/mail/qmail/Makefile @@ -59,6 +59,10 @@ BARRIER_RFC2821_PATCH= yes BARRIER_SPF_PATCH= yes .endif +.if !defined(SLAVE_SMTP_AUTH_TLS) +BARRIER_MAXRCPT_PATCH= yes +.endif + .if !defined(BARRIER_DNS_PATCH) # Patch necessary to cope with non-RFC >512 dns entries # Since AOL has been using those, the problem has skyrocketed from minor to @@ -139,6 +143,9 @@ OPTIONS+= DISCBOUNCES_PATCH "discard double-bounces" off .if !defined(BARRIER_SPF_PATCH) OPTIONS+= SPF_PATCH "Implement SPF checker" off .endif +.if !defined(BARRIER_MAXRCPT_PATCH) +OPTIONS+= MAXRCPT_PATCH "Limit max RCPT's allowed per message" off +.endif .if defined(SLAVE_TLS) || defined(SLAVE_SMTP_AUTH_TLS) OPTIONS+= TLS_DEBUG "enable additional debug information" off .elif defined(SLAVE_LDAP) @@ -353,6 +360,11 @@ PATCHFILES+= qmail-1.03-starttls-smtp-auth_outgoingip.patch:smtp_auth_tls PATCHFILES+= qmail-1.03-starttls-smtp-auth.patch:smtp_auth_tls .endif +.if defined(WITH_MAXRCPT_PATCH) && !defined(BARRIER_MAXRCPT_PATCH) +PATCH_SITES+= http://www.unixlike.com.br/coisas/qmail/:maxrcpt +PATCHFILES+= qmail-1.03-maxrcpt.freebsd_qmail-smtp+tls_port.patch:maxrcpt +.endif + .endif .if defined(WITH_MAILDIRQUOTA_PATCH) && !defined(BARRIER_MAILDIRQUOTA_PATCH) |