Anti-Spam Weboberfläche

droizenberg

New Member
Hallo,

ich arbeite grade das Howto MaiaMailguard für VHCS 2.4.7.1 durch und bin bei Punkt 23. Indianer meets Maia. Wenn ich über antispam.domain.de auf die Weboberfläche zugreifen will kommt nur die vhcs seite?

Jemand eine Idee?

Droizenberg
 
Hallo,

da ich weder das HowTo noch das Script kenne das du einarbeiten willst und leider keine Fehlermeldungen geschweige denn Logauszüge vorhanden sind werd ich mal raten.

Fehlender vHost Eintrag?
 
Meine Glaskugel ist gerade ein wenig verstaubt - bringe doch bitte mal das Staubtuch.

Prinzipiell würde ich sagen, kommen folgende Fehlerquellen in Betracht:
- Vhost nicht richtig eingetragen
- Vhost eingetragen, aber Indianer nicht neugestartet

Schau doch mal ins errorlog von Apache.

Edit: Entschuldige das "Doppelpost", aber V40 gab vor, sich um sein Kind zu kümmern und afk zu sein ;)
 
ich hab in /etc/apache2/sites-enabled eine antispam.conf angelegt:
Code:
# webmail
<VirtualHost MEINEIP:80>
    
    ServerAdmin     [email]root@serverdomain.de[/email]
    DocumentRoot    /var/www/antispam
    
    ServerName      antispam.serverdomain.de
    ServerAlias     [url]www.antispam.serverdomain.de[/url] antispam.serverdomain.de 
    
    ErrorLog        /var/log/apache2/users/antispam.serverdomain.de-error.log
    TransferLog     /var/log/apache2/users/antispam.serverdomain.de-access.log
    
    CustomLog       /var/log/apache2/antispam.serverdomain.de-traf.log traff
    CustomLog       /var/log/apache2/antispam.serverdomain.de-combined.log combined
    
    
    # httpd dmn entry PHP2 support BEGIN.
    php_admin_value open_basedir "/var/www/antispam/:/usr/share/php/:/tmp/"
    # httpd dmn entry PHP2 support END.
    
    <Directory /var/www/antispam>
        # httpd dmn entry PHP support BEGIN.
        # httpd dmn entry PHP support END.
#        Options Indexes Includes FollowSymLinks MultiViews
#        AllowOverride AuthConfig
#        Order allow,deny
#        Allow from all

   AllowOverride none
      Options MultiViews IncludesNoExec FollowSymLinks
         DirectoryIndex index.html index.php
# php_admin_value open_basedir "/var/www/antispam/:/tmp/:/usr/share/php/"
 php_admin_value memory_limit 16M 	    
    </Directory>
    
</VirtualHost>
 
Last edited by a moderator:
Back
Top