Problem solved. The problem was caused by

> // suspicious-mails@ is a special inbox from IT department
> // to investigate suspicious mails ;)
> //
> // abuse@ should always get mails
> @virus_lovers_maps = (
>     '[email protected]' => 1
> );
>
> @banned_files_lovers_maps = (
>     '[email protected]' => 1
> );
>
> @spam_lovers_maps = (
>     '[email protected]'            => 1,
>     '[email protected]' => 1
> );
>
> @bad_header_lovers_maps = (
>     '[email protected]'            => 1,
>     '[email protected]' => 1
> );

I found this example in
https://sourceforge.net/p/amavis/mailman/message/17058964/

However I should have read the whole thread :/

Solution:

@virus_lovers_maps = (
    [
        '[email protected]'
    ]
);

@banned_files_lovers_maps = (
    [
        '[email protected]'
    ]
);

@spam_lovers_maps = (
    [
        '[email protected]',
        '[email protected]'
    ]
);

@bad_header_lovers_maps = (
    [
        '[email protected]',
        '[email protected]'
    ]
);


-- 
Regards,
Igor

Reply via email to