• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

Problems with Mailman

J

johnmont

Guest
Mailman seems to be working mail-list wise (sending emails, etc), but I'm unable to access the web admin panel at the domain lists.mydomain.com/mailman/admin/crew. checkperms shows "No problems found"

I'd appreciate any suggestions....

I get the following error messages:

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator, root@localhost and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log.

In the httpd suexec log I'm getting the following:

[2009-08-11 13:47:21]: command not in docroot (/usr/lib/mailman/cgi-bin/admin)

I have this in the config file

root@www:/ root$ cat /etc/httpd/conf.d/mailman.conf
#
# httpd configuration settings for use with mailman.
#

ScriptAlias /mailman/ /usr/lib/mailman/cgi-bin/
<Directory /usr/lib/mailman/cgi-bin/>
AllowOverride None
Options ExecCGI
Order allow,deny
Allow from all
</Directory>


Alias /pipermail/ /var/lib/mailman/archives/public/
<Directory /var/lib/mailman/archives/public>
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>

# Uncomment the following line, replacing www.example.com with your server's
# name, to redirect queries to /mailman to the listinfo page (recommended).

# RedirectMatch ^/mailman[/]*$ http://www.example.com/mailman/listinfo
 
Back
Top