Posts by DrCarsonBeckett

    Postscreen macht das "selbe".
    Wenn du mal in die Postscreenconfig rein guckst:

    Code
    1. 'postscreen_dnsbl_sites' => array(
    2. 'zen.spamhaus.org*2',
    3. 'dnsbl-1.uceprotect.net*1',
    4. 'bl.spamcop.net*1',
    5. 'list.dnswl.org=127.0.[0..255].[1..3]*-2'
    6. ),


    Siehst du das wie bei polycid-weight ebenfalls die Blacklists abgefragt werden.
    Postscreen alleine sollte schon 90% des Spams filtern, was mal ne ordentliche Leistung ist.


    Whitelisten ist ebenfalls möglich.

    Sollte mit iptables gehen, dass ist ja soweit dabei (bin ich zu mindestens der Meinung). Google gibt dies zu mindestens bei dem Thema raus.
    iptables -A INPUT -p tcp -s Quell-IP-hier --dport 25 -j LOG --log-uid --log-level debug


    Edit: Gerade gemerkt das es nur die Pakete loggen sollte. Sorry. :S Wobei ja die user ID gelockt wird, sollte daher vielleicht doch dann klappen.

    Its like in the link.
    Heres a quick overview (step by step)

    Code
    1. cd /usr/local/src
    2. wget https://github.com/i-MSCP/imscp/archive/1.2.1.zip
    3. unzip 1.2.1
    4. cd imscp-1.2.1
    5. perl imscp-autoinstall


    Follow the guy step by step.


    PS.: If you like you can remove older i-mscp zips (archives in general) and folders, but thats not really needed.

    Hi all,


    I got a problem with the latest Monitorix plugin. I tried to install the version 1.1.1.
    I installed every lib which is needed, restarted the monitorix service and installed the plugin after that.
    The installation works and the activation too but when I try to access the Monitorix page I get this error:

    Code
    1. An unexpected error occuredAn unexpected error occurred. Please contact your administrator.


    At the same time I get this mail:



    To be sure, I removed monitorix completly [apt-get purge monitorix] (removed the /etc/monitorix folder too) and retried it. Same thing.
    I took a look at the readme file and at the monitorix page:
    http://www.monitorix.org/doc-debian.html


    Of course I checked the wiki page too:
    http://wiki.i-mscp.net/doku.php?id=plugins:monitorix



    Someone got an idea how to solve it?
    I am not sure if I forgot something but atm I dont see the reason for that error. :S
    Edit: I read in another topic that I don't need the CronJob plugin, so I didn't installed that one. Might that be the problem?

    Why don't you simply upload a .htaccess file to the domain? That takes a few seconds and is an easy way to do it.
    The mentioned (in your post) method should work too.


    I saw your .htaccess and it can't work like this if I am correct.

    Code
    1. ## Rewrite to wwwOptions +FollowSymLinksRewriteEngine onRewriteCond %{HTTP_HOST} ^domain.com[nc]RewriteRule ^(.*)$ http:## www.domain.com/$1 [r=301,nc]


    Better is:

    Code
    1. Options +FollowSymlinks
    2. RewriteEngine on
    3. RewriteCond %{HTTP_HOST} ^domain\.com$ [NC]
    4. RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,L]