ispCP - Board - Support
Maia und Locale Mails - Printable Version

+- ispCP - Board - Support (http://www.isp-control.net/forum)
+-- Forum: ispCP Omega International Area (/forum-22.html)
+--- Forum: German Corner (/forum-26.html)
+---- Forum: Plauderecke (/forum-49.html)
+---- Thread: Maia und Locale Mails (/thread-8656.html)



Maia und Locale Mails - OsIrIs - 12-04-2009 08:18 PM

Hallo,

ich habe das Problem, das bei mir auch sämtliche Locale Mails gescannt werden.
Kann man das irgendwie ändern? In der amavisd.conf habe ich diese Paramenter drin:

Code:
use DBI;
my $db = "ispcp";
my $user="root";           # Hier deinen ispCP MySQL Username eingeben
               # (ist der gleiche wie bei der Installation von ispCP)
my $host="localhost";
my $password="_YOUR_PASS"; # Hier dein ispCP MySQL Passwort eingeben
               #(ist der gleiche wie bei der Installation von ispCP)

my $dbh = DBI->connect("DBI:mysql:database=$db;host=$host", $user, $password, {RaiseError => 1});
my $arr = $dbh->selectcol_arrayref('SELECT domain_name, 1 FROM domain', {Columns=>[1,2]});
my $arre = $dbh->selectcol_arrayref('SELECT alias_name, 1 FROM domain_aliasses', {Columns=>[1,2]});

my $lis = ($arre,$arr);
%local_domains = (@$arr,@$arre);