• We value your experience with Plesk during 2024
    Plesk strives to perform even better in 2025. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2024.
    Please take this short survey:

    https://pt-research.typeform.com/to/AmZvSXkx
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

mchk gives "Segmentation fault"

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.
 
We tried this.

Doing a tail -f on the maillog gets us this error:

Code:
Jan  4 14:31:34 ls1391 qmail: 1136403094.879712 delivery 823: success: Group_mismatch_error._Mailman_expected_the_mail_wrapper_script_to_be/executed_as_one_of_the_following_groups:/[mail,_postfix,_mailman,_nobody,_daemon],/but_the_system's_mail_server_executed_the_mail_script_as_group:_"popuser"./Try_tweaking_the_mail_server_to_run_the_script_as_one_of_these_groups:/[mail,_postfix,_mailman,_nobody,_daemon],/or_re-run_configure_providing_the_command_line_option:/'--with-mail-gid=popuser'./Failed_to_start_/usr/lib/mailman/mail/mailman./did_0+0+1/
[/code


This is really becoming a pain in the proverbial whatchacallit.
 
Same problem here, even after applying the hotfix.

CentOS 4.2
PSA 7.5.4-rhel4.build75050824.12

"segmentation fault" when running mchk -v

This is a problem; because we can't perform the mailman GID fix in the knowledge base (http://kb.swsoft.com/article_61_942_en.html) without the ability to run mchk. :-(
 
Back
Top