• The new Python extension is now available. It allows customers to deploy and manage WSGI-based Python applications on their websites directly from Plesk.
  • Debian 11 has reached its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.81 is the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

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