• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

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