summaryrefslogtreecommitdiff
path: root/mail/exim
diff options
context:
space:
mode:
authorKirill Ponomarev <krion@FreeBSD.org>2005-12-27 22:40:25 +0000
committerKirill Ponomarev <krion@FreeBSD.org>2005-12-27 22:40:25 +0000
commit887922562e5cd5957d4b8d1778d8b145591a4a82 (patch)
tree2672239cb81dde86fb39eb80133992d960350088 /mail/exim
parentSilence errors on package install/deinstall by using proper if-clauses in (diff)
Allow users specify saslauthd socket location with SASLAUTHD_SOCKET
variable in case of non-default layouts. Point default location to /var/run/saslauthd PR: ports/90987 Submitted by: Alexander Wittig <alexander AT wittig DOT name>
Notes
Notes: svn path=/head/; revision=152237
Diffstat (limited to 'mail/exim')
-rw-r--r--mail/exim/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/mail/exim/Makefile b/mail/exim/Makefile
index df73e38aeb8d..94467ddb171f 100644
--- a/mail/exim/Makefile
+++ b/mail/exim/Makefile
@@ -366,7 +366,8 @@ SEDLIST+= -e 's,XX_MYSQL_[^ ]*_XX,,'
.if defined(WITH_SASLAUTHD)
RUN_DEPENDS+= ${LOCALBASE}/sbin/saslauthd:${PORTSDIR}/security/cyrus-sasl2-saslauthd
-SEDLIST+= -e 's,^\# (CYRUS_SASLAUTHD_SOCKET=),\1,'
+SASLAUTHD_SOCKET?= /var/run/saslauthd/mux
+SEDLIST+= -e 's,^\# (CYRUS_SASLAUTHD_SOCKET=).*,\1${SASLAUTHD_SOCKET},'
.endif
.if defined(WITH_PWCHECK)