diff options
Diffstat (limited to 'mail/exim/Makefile')
-rw-r--r-- | mail/exim/Makefile | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/mail/exim/Makefile b/mail/exim/Makefile index 8f2eb2e7bedc..1876beae24f1 100644 --- a/mail/exim/Makefile +++ b/mail/exim/Makefile @@ -7,6 +7,7 @@ PORTNAME= exim PORTVERSION= ${EXIM_VERSION} +PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= ftp://ftp.csx.cam.ac.uk/pub/software/email/exim/%SUBDIR%/ \ ftp://gd.tuwien.ac.at/infosys/mail/exim/%SUBDIR%/ \ @@ -121,11 +122,13 @@ DB_LIB_VERSION?=1 # be called during string expansion. #WITHOUT_PERL= yes # -# Disable built-in Exim support for the PAM, RFC 2195 and RFC 2595 -# authentication mechanisms, used for SMTP AUTH. +# Disable built-in Exim support for the PAM, RFC 2195, RFC 2595 and +# Microsoft "Secure Password Authentication" authentication mechanisms, +# used for SMTP AUTH. #WITHOUT_PAM= yes #WITHOUT_AUTH_CRAM_MD5= yes #WITHOUT_AUTH_PLAINTEXT= yes +#WITHOUT_AUTH_SPA= yes # # Disable built-in Exim support for additional mailbox formats. #WITHOUT_MAILDIR= yes @@ -278,6 +281,10 @@ SEDLIST+= -e 's,^\# AUTH_CRAM_MD5=,AUTH_CRAM_MD5=,' SEDLIST+= -e 's,^\# AUTH_PLAINTEXT=,AUTH_PLAINTEXT=,' .endif +.if !defined(WITHOUT_AUTH_SPA) +SEDLIST+= -e 's,^\# AUTH_SPA=,AUTH_SPA=,' +.endif + .if defined(WITH_PGSQL) LIB_DEPENDS+= pq.3:${PORTSDIR}/${POSTGRESQL_PORT} SEDLIST+= -e 's,XX_PGSQL_LIBS_XX,-L${LOCALBASE}/lib -lpq,' \ |