summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--INSTALL3
-rwxr-xr-xconfigure2
-rw-r--r--configure.in4
3 files changed, 4 insertions, 5 deletions
diff --git a/INSTALL b/INSTALL
index c810d3f83..d6cf881dd 100644
--- a/INSTALL
+++ b/INSTALL
@@ -98,8 +98,7 @@ configure and install the Mailman software.
mail wrapper. <group-or-groups> can be a list of one or
more integer group ids or symbolic group names. The first
value in the list that resolves to an existing group is
- used. By default, the value is the `other' group
- (typically defined in your system's /etc/group file).
+ used. By default, the value is the list `other daemon'.
This is highly system dependent and you must get this
right, because the group id is compiled into the mail
diff --git a/configure b/configure
index 96b8a7f50..6181b6425 100755
--- a/configure
+++ b/configure
@@ -974,7 +974,7 @@ fi
if test -z "$with_mail_gid"
then
- with_mail_gid=other
+ with_mail_gid="other daemon"
fi
echo "$ac_t""$with_mail_gid" 1>&6
diff --git a/configure.in b/configure.in
index b9b79c193..7b8b717ac 100644
--- a/configure.in
+++ b/configure.in
@@ -15,7 +15,7 @@
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
dnl Process this file with autoconf to produce a configure script.
-AC_REVISION($Revision: 681 $)
+AC_REVISION($Revision: 684 $)
AC_PREREQ(2.0)
AC_INIT(src/alias-wrapper.c)
@@ -156,7 +156,7 @@ AC_ARG_WITH(mail-gid, [
--with-mail-gid specify GID mail programs run as])
if test -z "$with_mail_gid"
then
- with_mail_gid=other
+ with_mail_gid="other daemon"
fi
AC_MSG_RESULT($with_mail_gid)
MM_FIND_GROUP_ID(MAIL_GID, $with_mail_gid, mail_wrapper)