On 11/11/05, Nikolay Sturm <[EMAIL PROTECTED]> wrote: > > * Chris Mika [2005-11-10]: > > I've sent this to the package maintainer and have gotten no repsponse, > > so I'm forwarding it the the ports mailing list hoping someone here > > can fix it. > > Fixed in -current, 3.8 will follow. >
hmm, while we are at it! the line for the postix case: CONFIGURE_ARGS+=--with-mail-gid=nobody is wrong and should be: CONFIGURE_ARGS+=--with-mail-gid=_mailman since openbsd 2.9 i had always to change it to use group _mailman for every installation (otherwise mailman's qrunner would bail out with an error message asking to provide the correct group and recompile). anybody else who can very that? here's a diff from my 3.7 installation: /usr/ports/mail/mailman $ cvs diff -u cvs server: Diffing . Index: Makefile =================================================================== RCS file: /cvs/ports/mail/mailman/Makefile,v retrieving revision 1.32 diff -u -r1.32 Makefile --- Makefile 11 Feb 2005 19:33:55 -0000 1.32 +++ Makefile 13 Nov 2005 13:53:28 -0000 @@ -20,7 +20,7 @@ MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=mailman/} EXTRACT_SUFX= .tgz -PYTHON_VER= 2.2 +PYTHON_VER= 2.3 SUBST_VARS= PYTHON_VER BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= :python-${PYTHON_VER}*:lang/python/${PYTHON_VER} @@ -47,7 +47,7 @@ FLAVORS= postfix FLAVOR?= .if ${FLAVOR:L:Mpostfix} -CONFIGURE_ARGS+=--with-mail-gid=nobody +CONFIGURE_ARGS+=--with-mail-gid=_mailman .else CONFIGURE_ARGS+=--with-mail-gid=daemon .endif cvs server: Diffing files cvs server: Diffing patches cvs server: Diffing pkg thx, tamer. -- hardware, n: The parts of a computer system that can be kicked.