Skip site navigation (1)Skip section navigation (2)
Date:      Mon,  4 Nov 2002 12:13:15 -0800 (PST)
From:      Scott Lampert <scott@francisscott.net>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/44888: New user config options for sqwebmail
Message-ID:  <20021104201315.5883B5850@enterprise.francisscott.net>

next in thread | raw e-mail | index | archive | help

>Number:         44888
>Category:       ports
>Synopsis:       New user config options for sqwebmail
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Mon Nov 04 12:20:01 PST 2002
>Closed-Date:
>Last-Modified:
>Originator:     Scott Lampert
>Release:        FreeBSD 4.6.2-RELEASE i386
>Organization:
FrancisScott Communcations, LLC
>Environment:
System: FreeBSD 4.6.2-RELEASE

>Description:
	Added some configure options to the Makefile that weren't
	included in the original.
>How-To-Repeat:
	Not applicable
>Fix:
Apply the following patch:

--- Makefile.orig	Mon Nov  4 11:34:41 2002
+++ Makefile	Mon Nov  4 11:48:24 2002
@@ -43,6 +43,11 @@
 # set WITH_TIMEOUTSOFT to something other than 1200 seconds (20m)
 # set VCHKPW to the home of the vpopmail user, if necessary
 #
+# The following settings are in bytes:
+# set WITH_MAXMSGSIZE to max size of messages (including attachments)
+# set WITH_MAXARGSIZE to max size of a text message (excluding attachments)
+# set WITH_MAXFORMARGSIZE to max size of attachments
+
 
 CACHEDIR?=	/var/sqwebmail/cache
 CACHEOWNER?=	bin
@@ -125,6 +130,18 @@
 
 .if defined(WITH_TIMEOUTSOFT)
 CONFIGURE_ARGS+=	--enable-softtimeout=${WITH_TIMEOUTSOFT}
+.endif
+
+.if defined(WITH_MAXMSGSIZE)
+CONFIGURE_ARGS+=	--with-maxmsgsize=${WITH_MAXMSGSIZE}
+.endif
+
+.if defined(WITH_MAXARGSIZE)
+CONFIGURE_ARGS+=	--with-maxargsize=${WITH_MAXARGSIZE}
+.endif
+
+.if defined(WITH_MAXFORMARGSIZE)
+CONFIGURE_ARGS+=	--with-maxformargsize=${WITH_MAXFORMARGSIZE}
 .endif
 
 MANPREFIX=	${PREFIX}/share/sqwebmail
>Release-Note:
>Audit-Trail:
>Unformatted:

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20021104201315.5883B5850>