From owner-freebsd-ports Mon Nov 4 12:20: 4 2002 Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D4E737B401 for ; Mon, 4 Nov 2002 12:20:02 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D1DA43E42 for ; Mon, 4 Nov 2002 12:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gA4KK1x3076605 for ; Mon, 4 Nov 2002 12:20:01 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gA4KK1CO076604; Mon, 4 Nov 2002 12:20:01 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D30C037B401 for ; Mon, 4 Nov 2002 12:13:20 -0800 (PST) Received: from enterprise.francisscott.net (enterprise.francisscott.net [198.77.29.135]) by mx1.FreeBSD.org (Postfix) with ESMTP id 98ECA43E6E for ; Mon, 4 Nov 2002 12:13:20 -0800 (PST) (envelope-from scott@francisscott.net) Received: by enterprise.francisscott.net (Postfix, from userid 1000) id 5883B5850; Mon, 4 Nov 2002 12:13:15 -0800 (PST) Message-Id: <20021104201315.5883B5850@enterprise.francisscott.net> Date: Mon, 4 Nov 2002 12:13:15 -0800 (PST) From: Scott Lampert Reply-To: Scott Lampert To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/44888: New user config options for sqwebmail Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >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