From owner-freebsd-questions@FreeBSD.ORG Wed Aug 6 14:20:17 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 721CD37B401 for ; Wed, 6 Aug 2003 14:20:17 -0700 (PDT) Received: from out006.verizon.net (out006pub.verizon.net [206.46.170.106]) by mx1.FreeBSD.org (Postfix) with ESMTP id 86BB443F3F for ; Wed, 6 Aug 2003 14:20:16 -0700 (PDT) (envelope-from cswiger@mac.com) Received: from mac.com ([151.205.189.55]) by out006.verizon.net (InterMail vM.5.01.05.33 201-253-122-126-133-20030313) with ESMTP id <20030806212015.UFVQ16647.out006.verizon.net@mac.com>; Wed, 6 Aug 2003 16:20:15 -0500 Message-ID: <3F31710E.7020007@mac.com> Date: Wed, 06 Aug 2003 17:20:14 -0400 From: Chuck Swiger Organization: The Courts of Chaos User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4) Gecko/20030624 X-Accept-Language: en-us, en MIME-Version: 1.0 To: "Kirk R. Wythers" References: <1060199428.11299.68.camel@lorax.forestry.umn.edu> In-Reply-To: <1060199428.11299.68.camel@lorax.forestry.umn.edu> X-Enigmail-Version: 0.76.4.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Authentication-Info: Submitted using SMTP AUTH at out006.verizon.net from [151.205.189.55] at Wed, 6 Aug 2003 16:20:15 -0500 cc: freebsd-questions@freebsd.org Subject: Re: freebsd and mailman groups X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Aug 2003 21:20:17 -0000 Kirk R. Wythers wrote: [ ... ] > I was hoping for some advice as to easiest way to fix this. I'm always > nervous when something says "try tweaking the mail server", but I don't > want to re-run ./configure if it will mess up something that I have > already set up... The easiest way would to be install Mailman via the port. In particular, /usr/ports/mail/mailman/Makefile suggests: CONFIGURE_ARGS= --prefix=${MAILMANDIR} --with-python=${PYTHON_CMD} \ --with-username=${MM_USERNAME} \ --with-groupname=${MM_GROUPNAME} \ --with-mail-gid=${MAIL_GID} --with-cgi-gid=${CGI_GID} .include # The Mailman port supports a number of variables that may be tweaked at # build time. Getting the values of some of them right is crucial! # Perform a "make options" to see more information on these variables. # MM_USERNAME?= mailman MM_USERID?= 91 MM_GROUPNAME?= ${MM_USERNAME} MM_GROUPID?= ${MM_USERID} MM_DIR?= mailman .if ${OSVERSION} >= 450000 MAIL_GID?= mailnull .else MAIL_GID?= daemon .endif CGI_GID?= www IMGDIR= www/icons -- -Chuck