Update to exim-4.03, including Cyrus SASL pwcheck daemon authentication
support (disabled by default). Submitted by: mallet@efn.org (Suresh Ramasubramanian)
This commit is contained in:
parent
4fdc3124c2
commit
4b51f316f1
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=57754
2 changed files with 11 additions and 3 deletions
|
@ -23,7 +23,7 @@ USE_BZIP2= yes
|
|||
|
||||
MAN8= exim.8
|
||||
|
||||
EXIM_VERSION= 4.01
|
||||
EXIM_VERSION= 4.03
|
||||
EXIM_DOCVERSION= 4.00
|
||||
|
||||
PLIST_SUB+= EXIM_VERSION="${EXIM_VERSION}"
|
||||
|
@ -41,11 +41,13 @@ MAKE_ENV+= OSTYPE=${OPSYS} ARCHTYPE=${MACHINE_ARCH}
|
|||
|
||||
# Define WITH_TCP_WRAPPERS, WITH_LDAP, WITH_MYSQL, and WITH_PGSQL to
|
||||
# link against libwrap, an LDAP library (see below), liblibmysqlclient
|
||||
# and libpq respectively.
|
||||
# and libpq respectively. Define WITH_PWCHECK to link against libsasl
|
||||
# for SMTP AUTH authentication via the Cyrus SASL pwcheck daemon.
|
||||
#WITH_TCP_WRAPPERS= yes
|
||||
#WITH_LDAP= yes
|
||||
#WITH_MYSQL= yes
|
||||
#WITH_PGSQL= yes
|
||||
#WITH_PWCHECK= yes
|
||||
|
||||
# Define WITHOUT_IPV6 to exclude IPv6 support from the compiled exim
|
||||
# binary. Exim compiled with IPv6 support will still operate on
|
||||
|
@ -148,6 +150,12 @@ SEDLIST+= -e 's,XX_MYSQL_LIBS_XX,-L${LOCALBASE}/lib/mysql -lmysqlclient,' \
|
|||
SEDLIST+= -e 's,XX_MYSQL_[^ ]*_XX,,'
|
||||
.endif
|
||||
|
||||
.if defined(WITH_PWCHECK)
|
||||
LIB_DEPENDS+= sasl.8:${PORTSDIR}/security/cyrus-sasl
|
||||
SEDLIST+= -e 's,^\# SUPPORT_CYRUS_PWCHECK=,SUPPORT_CYRUS_PWCHECK=,' \
|
||||
-e 's,^\# CYRUS_PWCHECK_SOCKET=,CYRUS_PWCHECK_SOCKET=,'
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_PAM)
|
||||
SEDLIST+= -e 's,XX_PAM_LIBS_XX,-lpam,' \
|
||||
-e 's,^\# SUPPORT_PAM=,SUPPORT_PAM=,'
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
MD5 (exim-4.01.tar.bz2) = c911c286fab6f015106667fad9024cea
|
||||
MD5 (exim-4.03.tar.bz2) = 60e0d1163ec44bda4a078f09ae919f5e
|
||||
MD5 (exim-texinfo-4.00.tar.bz2) = 18983a980fda2c4d375072c7efe3d994
|
||||
|
|
Loading…
Reference in a new issue