• 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!
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.
  • 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.

Mailman interface crashed

S

StephenKing

Guest
Hey Guys,

my mailman interface isn't working anymore since some months. I don't know why but it may have sth. to do witch deactivation of some "unused" apache modules. Meanwhile I think I've reenabled all of them, but nothing changes.

I get Error 404 at trying to access Mailman Webinterface and in error_log "File does not exist: /usr/lib/cgi-bin/mailman/admin/LISTNAME" is logged.

Can anybody post his /etc/apache2/conf.d/zz010_psa_httpd.conf or all his modules-enabled?

I've searched quite a lot but couldn't find any solution. I also changed DocumentRoot to /usr/lib/cgi-bin/mailman and then apache delivered the binaries...

Plesk 8.4, Debian Etch

/etc/apache2/conf.d/zz010_psa_httpd.conf:
Code:
<VirtualHost \
                        xxx.xxx.xxx.xxx:80 \
                        >
        DocumentRoot /var/www/vhosts/default/htdocs
        ServerName lists
        ServerAlias lists.*
        UseCanonicalName Off
        ScriptAlias /mailman/ /usr/lib/cgi-bin/mailman/
        ScriptAlias /cgi-bin/mailman/ /usr/lib/cgi-bin/mailman/
        Alias /icons/ /var/lib/mailman/icons/
        Alias /pipermail/ /var/lib/mailman/archives/public/
        Alias /images/ /usr/share/images/
        <Directory /var/lib/mailman/archives/>
                Options FollowSymLinks
                Order allow,deny
                Allow from all
        </Directory>
</VirtualHost>


<IfModule mod_ssl.c>

<VirtualHost \
                        xxx.xxx.xxx.xxx:443 \
                        >
        DocumentRoot /var/www/vhosts/default/httpsdocs
        ServerName lists
        ServerAlias lists.*
        UseCanonicalName Off
        ScriptAlias /mailman/ /usr/lib/cgi-bin/mailman/
        ScriptAlias /cgi-bin/mailman/ /usr/lib/cgi-bin/mailman/
        Alias /icons/ /var/lib/mailman/icons/
        Alias /pipermail/ /var/lib/mailman/archives/public/
        Alias /images/ /usr/share/images/
        <Directory /var/lib/mailman/archives/>
                Options FollowSymLinks
                Order allow,deny
                Allow from all
        </Directory>
</VirtualHost>
Code:
# ls -la /usr/lib/cgi-bin/mailman/
insgesamt 79
drwxr-xr-x 2 root list 1024 2008-06-11 22:42 .
drwxr-xr-x 3 root root 1024 2008-04-24 15:27 ..
-rwxr-sr-x 1 root list 6372 2007-02-28 22:36 admin
-rwxr-sr-x 1 root list 6376 2007-02-28 22:36 admindb
-rwxr-sr-x 1 root list 6376 2007-02-28 22:36 confirm
-rwxr-sr-x 1 root list 6372 2007-02-28 22:36 create
-rwxr-sr-x 1 root list 6376 2007-02-28 22:36 edithtml
-rwxr-sr-x 1 root list 6376 2007-02-28 22:36 listinfo
-rwxr-sr-x 1 root list 6376 2007-02-28 22:36 options
-rwxr-sr-x 1 root list 6376 2007-02-28 22:36 private
-rwxr-sr-x 1 root list 6372 2007-02-28 22:36 rmlist
-rwxr-sr-x 1 root list 6372 2007-02-28 22:36 roster
-rwxr-sr-x 1 root list 6380 2007-02-28 22:36 subscribe

Code:
# ls /etc/apache2/mods-enabled/
alias.load       authz_default.load    authz_user.load  deflate.load  env.load      mime.load         php5.conf   proxy.load     ssl.load     userdir.conf
auth_basic.load  authz_groupfile.load  autoindex.load   dir.conf      expires.load  mod_python.load   php5.load   rewrite.load   status.load  userdir.load
authn_file.load  authz_host.load       deflate.conf     dir.load      include.load  negotiation.load  proxy.conf  setenvif.load  suexec.load
 
Back
Top