Ok! Found a solution:
Actually i found this
wiki page.
Although the solution is IP-based I changed it to a user-based with some little tweaks:
On postfix_recipient_restrictions:
check_recipient_access pcre:/opt/zimbra/postfix/conf/no_filter
On /opt/zimbra/postfix/conf/no_filter
/^user\@domain\.com$/ FILTER smtp:[127.0.0.1]:10026
On /opt/zimbra/conf/amavisd.conf.in
$inet_socket_port = [10024, 10026]; # change from original setting
$interface_policy{'10026'} = 'DOMAINWHITELIST';
$policy_bank{'DOMAINWHITELIST'} = {
bypass_spam_checks_maps => [1],
final_spam_destiny => D_PASS,
};
Then restarted amavis and postfix.
Now its works.
Thanks!