diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2005-12-28 06:40:25 +0800 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2005-12-28 06:40:25 +0800 |
commit | 887922562e5cd5957d4b8d1778d8b145591a4a82 (patch) | |
tree | 2672239cb81dde86fb39eb80133992d960350088 /mail/exim | |
parent | bdd298a2e3bb101b98cee4e570e28934313762fb (diff) | |
download | freebsd-ports-gnome-887922562e5cd5957d4b8d1778d8b145591a4a82.tar.gz freebsd-ports-gnome-887922562e5cd5957d4b8d1778d8b145591a4a82.tar.zst freebsd-ports-gnome-887922562e5cd5957d4b8d1778d8b145591a4a82.zip |
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>
Diffstat (limited to 'mail/exim')
-rw-r--r-- | mail/exim/Makefile | 3 |
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) |