diff options
author | Pete Fritchman <petef@FreeBSD.org> | 2003-04-06 15:31:07 +0000 |
---|---|---|
committer | Pete Fritchman <petef@FreeBSD.org> | 2003-04-06 15:31:07 +0000 |
commit | 62ba0b8f2182cdc72bb011d704bd00b93d039ce1 (patch) | |
tree | 3f2b50a94f7c42979b22d555f2321b86cb8f08ca /mail/maildrop | |
parent | a0d8bb8457a19ff941cac84ebbb74acefb5eec5c (diff) |
Notes
Diffstat (limited to 'mail/maildrop')
-rw-r--r-- | mail/maildrop/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mail/maildrop/Makefile b/mail/maildrop/Makefile index 96b0efa97277..feb2e076798d 100644 --- a/mail/maildrop/Makefile +++ b/mail/maildrop/Makefile @@ -16,6 +16,8 @@ # If undefined, these values default to "root" and "mail" # respectively, which should be suitable for most # systems. +# NO_MAILWRAPPER If defined, let configure guess which sendmail binary +# to use PORTNAME= maildrop PORTVERSION= 1.5.2 @@ -46,6 +48,10 @@ CONFIGURE_ARGS+= --enable-syslog=1 \ --enable-maildrop-uid="${MAILDROP_SUID}" \ --enable-maildrop-gid="${MAILDROP_SGID}" +.if !defined(NO_MAILWRAPPER) +CONFIGURE_ARGS+= --enable-sendmail=/usr/sbin/sendmail +.endif + .if defined(WITH_MAILDIRQUOTA) CONFIGURE_ARGS+= --enable-maildirquota PLIST_SUB+= MAILDIRQUOTA="" |