[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: ports/48072: update-port: mail/sqwebmail
The following reply was made to PR ports/48072; it has been noted by GNATS.
From: Scott Lampert <scott@xxxxxxxxxxx>
To: freebsd-gnats-submit@xxxxxxxxxxx, lehmann@xxxxxxxxxxx
Cc:
Subject: Re: ports/48072: update-port: mail/sqwebmail
Date: Fri, 14 Feb 2003 15:27:52 -0800
Applying this patch after the original adds the ability to specify using
https:// only for pages that require a password, and a second option
to disable the periodic renaming of the users' Sent folder.
--- Makefile.old Fri Feb 14 15:16:54 2003
+++ Makefile Fri Feb 14 15:24:40 2003
@@ -37,11 +37,13 @@
# set CACHEDIR to where you'd like your cache directory to be
# set WITH_LDAP for LDAP authentication and addressbook support
# set WITH_HTTPS to generate https:// URLs for all accesses
+# set WITH_HTTPS=login to generate https:// URLs for only password access
# set WITH_VCHKPW for vpopmail authentication
# set WITH_ISPELL to provide spell-checking
# set WITH_MIMETYPES to enable the search for a mime.types file
# set WITH_TIMEOUTHARD to something other than 7200 seconds (2hr)
# set WITH_TIMEOUTSOFT to something other than 1200 seconds (20m)
+# set WITHOUT_AUTOSENTRENAME to turn off periodic renaming of the Sent
folder
# set VCHKPW to the home of the vpopmail user, if necessary
#
# The following settings are in bytes:
@@ -101,7 +103,15 @@
.endif
.if defined(WITH_HTTPS)
+.if ${WITH_HTTPS} == "login"
+CONFIGURE_ARGS+= --enable-https=login
+.else
CONFIGURE_ARGS+= --enable-https
+.endif
+.endif
+
+.if defined(WITHOUT_AUTORENAMESENT)
+CONFIGURE_ARGS+= --disable-autorenamesent
.endif
.if defined(WITH_MYSQL)
To Unsubscribe: send mail to majordomo@xxxxxxxxxxx
with "unsubscribe freebsd-ports-bugs" in the body of the message