> Hello!
>
> Amavis bans the messages as it should in /var/spool/amavis/
> virusmails. I checked the email and it contains a trusted .exe-file. How
can I deliver this message to the original recipient? I use
> amavis with postfix and cyrus.
>
> Greetz,
> Dirk
>

You can resend messages with the amavisd-release script. This script
contains some information about resending the messags in the banned area.
The configuration below can be of help to implement this.

add the following to the configuration file of amavis

$interface_policy{'9998'} = 'AM.PDP';
$auth_required_release = 0;
$policy_bank{'AM.PDP'} = {
        log_level => 4,
        protocol => 'AM.PDP',
};


$inet_socket_port = [..., 9998];   # listen on this local TCP port(s) (see
$protocol)

Change the lines:

# $socketname = '127.0.0.1:9998';
  $socketname = '/var/amavis/amavisd.sock';
to:
  $socketname = '127.0.0.1:9998';
# $socketname = '/var/amavis/amavisd.sock';


Command:
amavisd-release <filename>

Make sure you have the $banned_files_quarantine_method = 'local:banned-%m';

ending in %m otherwise it won't work

cheers






-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
AMaViS-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/amavis-user
AMaViS-FAQ:http://www.amavis.org/amavis-faq.php3
AMaViS-HowTos:http://www.amavis.org/howto/

Reply via email to