iredmail-doc/it_IT/howto/2-disable.spam.virus.scanning.for.outgoing.mails.md
Zhang Huangbin 69c43d41bd 4 new Italian translations, thanks to Joseph Curto:
A html/disable.spam.virus.scanning.for.outgoing.mails-it_IT.html
A html/no.x-spam.headers-it_IT.html
A html/quarantine.clean.mails.per-user-it_IT.html
A html/quarantining-it_IT.html
A it_IT/howto/2-disable.spam.virus.scanning.for.outgoing.mails.md
A it_IT/howto/2-no.x-spam.headers.md
A it_IT/howto/2-quarantine.clean.mails.per-user.md
A it_IT/howto/2-quarantining.md
2016-05-19 09:17:26 +08:00

1,002 B

Disabilitare per le mail in uscita la scansione per spam e virus

Per disabilitare la scansione per le mail in uscita riguardo spam/virus, potete aggiungere un bypass nel file /etc/amavisd/amavisd.conf, file di configurazione di Amavisd (per RHEL/CentOS) oppure in /etc/amavis/conf.d/50-user (per Debian/Ububtu) oppure /usr/local/etc/amavisd.conf (per FreeBSD).

  • bypass_spam_checks_maps
  • bypass_virus_checks_maps
  • bypass_header_checks_maps
  • bypass_banned_checks_maps

Queste configurazioni possono essere aggiunti nel blocco di configurazione $policy_bank{'ORIGINATING'}:

$policy_bank{'ORIGINATING'} = {
    [...OMETTERE ALTRE CONFIGURAZIONI QUI...]

    # don't perform spam/virus/header check.
    bypass_spam_checks_maps => [1],
    bypass_virus_checks_maps => [1],
    bypass_header_checks_maps => [1],

    # allow sending any file names and types
    bypass_banned_checks_maps => [1],
}

Il riavvio del servizio Amavisd è necessario dopo aver effettuato le modifiche.