Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 25 Jun 2013 20:19:47 GMT
From:      Claudiu Bosioc <claudiu@casi.ro>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   ports/179978: [PATCH] mail/vpopmail: ROAMING configuration error
Message-ID:  <201306252019.r5PKJl7K069190@oldred.freebsd.org>
Resent-Message-ID: <201306252020.r5PKK1AL069024@freefall.freebsd.org>

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

>Number:         179978
>Category:       ports
>Synopsis:       [PATCH] mail/vpopmail: ROAMING configuration error
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Tue Jun 25 20:20:01 UTC 2013
>Closed-Date:
>Last-Modified:
>Originator:     Claudiu Bosioc
>Release:        9.1-RELEASE-p4
>Organization:
Centrul de Asistenta Servicii Internet
>Environment:
FreeBSD master.autoalex.ro 9.1-RELEASE-p4 FreeBSD 9.1-RELEASE-p4 #0 r252118: Mon Jun 24 00:20:48 EEST 2013     root@master.autoalex.ro:/usr/obj/usr/src/sys/MASTER  amd64
>Description:
It appears that the option ROAMING to enable roaming users support is not active even if it's set in make config.
It appears that there is an error in Makefile, the second time ROAMING_CONFIGURE_ON appears in the Makefile, it should have += instead of =

>How-To-Repeat:
recompile the port
>Fix:
here is a quick fix:

[root@master /usr/ports/mail/vpopmail]# diff -ur Makefile.orig Makefile
--- Makefile.orig       2013-06-15 17:23:06.000000000 +0300
+++ Makefile    2013-06-25 22:56:34.000000000 +0300
@@ -152,7 +152,7 @@
 AUTH_LOG_CONFIGURE_OFF=                --disable-auth-logging
 USERS_BIG_DIR_CONFIGURE_OFF=   --disable-users-big-dir
 SEEKABLE_CONFIGURE_OFF=                --disable-make-seekable
-ROAMING_CONFIGURE_ON=          --enable-relay-clear-minutes=${RELAYCLEAR}
+ROAMING_CONFIGURE_ON+=         --enable-relay-clear-minutes=${RELAYCLEAR}
 
 MYSQL_CONFIGURE_ON=            --enable-auth-module=mysql \
                                --enable-incdir=${LOCALBASE}/include/mysql \

>Release-Note:
>Audit-Trail:
>Unformatted:



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