• 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 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