• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    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.

mailman webaccess generates 403 Error

T

tglawe

Guest
The http://lists.domain.com/cgi-bin/mailman/admin/forall/general entry just show me an 403 Forbidden.

/usr/lib/mailman/bin/check_perms -f response following:

Code:
/var/lib/mailman/mail bad group (has: root, expected list) (fixing)
/var/lib/mailman/cgi-bin bad group (has: root, expected list) (fixing)
/var/lib/mailman/logs bad group (has: root, expected list) (fixing)
/var/lib/mailman/Mailman bad group (has: root, expected list) (fixing)
/var/lib/mailman/bin bad group (has: root, expected list) (fixing)
/var/lib/mailman/icons bad group (has: root, expected list) (fixing)
/var/lib/mailman/templates bad group (has: root, expected list) (fixing)
/var/lib/mailman/locks bad group (has: root, expected list) (fixing)
/var/lib/mailman/scripts bad group (has: root, expected list) (fixing)
/var/lib/mailman/cron bad group (has: root, expected list) (fixing)

How could I solve it?
 
Try This

chown 755 root : psaserv mailman

suexec won't let you set group properties over 755 and you are having a "group" issue so try setting the group to "psaserv" instead.

-chris
 
Something like this?

Code:
chown root : psaserv /var/lib/mailman
chmod 775 /var/lib/mailman/data/aliases.db
 
Back
Top