J
jshanley
Guest
The problem is, mm_wrapper is SGID (suid Group) as the wrong user. mm_wrapper, in your case, is currently SGID 101 (see what group that is in /etc/groups), which mailman doesn't like.
Anyway, look at mm_wrapper (it's in the qmail/bin folder). Here's mine (on FreeBSD, which is a different path from Linux):
ls -l /usr/local/psa/qmail/bin/mm*
-r-xr-sr-x 1 root popuser 4880 Aug 24 08:15 mm_wrapper
Just as a test, make a backup copy, saving the original owner & permissions with the -p flag:
cp -p mm_wrapper mm_wrapper.orig
That way you can "cp -p" the original back over your mm_wrapper if it doesn't work.
OK, now double-check which group is 110 in your /etc/group file. It should probably be "popuser". If so, change the group on the mm_wrapper file to popuser:
chgrp popuser mm_wrapper
... finally, stop and restart qmail, and see if your problems go away. Hopefully so.
Anyway, look at mm_wrapper (it's in the qmail/bin folder). Here's mine (on FreeBSD, which is a different path from Linux):
ls -l /usr/local/psa/qmail/bin/mm*
-r-xr-sr-x 1 root popuser 4880 Aug 24 08:15 mm_wrapper
Just as a test, make a backup copy, saving the original owner & permissions with the -p flag:
cp -p mm_wrapper mm_wrapper.orig
That way you can "cp -p" the original back over your mm_wrapper if it doesn't work.
OK, now double-check which group is 110 in your /etc/group file. It should probably be "popuser". If so, change the group on the mm_wrapper file to popuser:
chgrp popuser mm_wrapper
... finally, stop and restart qmail, and see if your problems go away. Hopefully so.