• The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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