X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=configure.in;h=c153c944ff50d3594f9137fbf3fb3d1b95232794;hb=045b9601403a216c400642229f2b291f85f88f7d;hp=6b3367f539e81d7351c6e3145476fca07076e980;hpb=17e31955aca3a425a3c6d6fc128f6648f9550369;p=mmh diff --git a/configure.in b/configure.in index 6b3367f..c153c94 100644 --- a/configure.in +++ b/configure.in @@ -238,8 +238,22 @@ if test "$lspath" != "no" -a "$cutpath" != "no"; then fi]) fi +dnl see if we can determine which group owns the mail spool dir +undefine([nmh_grp_mailspool])dnl +AC_CACHE_CHECK(what group owns the mail spool, nmh_group_mailspool, +[ nmh_group_mailspool=`ls -lgd $mailspool | awk '{print $4}'` + if test x$nmh_group_mailspool = xmail; then + MAILGROUP="mail" + elif test x$nmh_group_mailspool = xwheel; then + MAILGROUP="wheel" + else + MAILGROUP="'0'" + fi]) +AC_SUBST(MAILGROUP) + dnl ...If it's not, we need to #define MAILGROUP to 1 and make inc setgid mail. if test "$nmh_cv_mailspool_world_writable" = "no"; then +dnl do we really need both of these? AC_DEFINE(MAILGROUP) SETGID_MAIL=1 fi