iredmail-doc/en_US/howto/1-completely.disable.amavis...

52 lines
1.7 KiB
Markdown
Raw Normal View History

# Completely disable Amavisd + ClamAV + SpamAssassin
[TOC]
In iRedMail, Amavisd provides below features:
* content-based spam scanning (invoke SpamAssassin)
* Virus scanning (invoke ClamAV)
* DKIM signing
* DKIM verification (through SpamAssassin + Perl module)
* SPF verification (through SpamAssassin + Perl module)
* Disclaimer (throught AlterMIME)
2014-09-16 09:54:05 -05:00
### Stop virus/spam scanning, keep DKIM signing/verification and Disclaimer
If you want to disable virus and spam scanning, but keep DKIM signing and disclaimer, please try this:
2014-09-16 09:54:05 -05:00
* Keep `content_filter = smtp-amavis:[127.0.0.1]:10024` in Postfix config file `/etc/postfix/main.cf`.
* Find below lines in /etc/amavisd/amavisd.conf:
```perl
# @bypass_virus_checks_maps = (1); # controls running of anti-virus code
# @bypass_spam_checks_maps = (1); # controls running of anti-spam code
```
Uncomment above lines (removing "# " at the beginning of each line), and restart Amavisd service.
2014-09-16 09:54:05 -05:00
### Completely disable all features
If you want to completely disable spam and virus scanning services, steps:
2016-01-05 06:34:35 -06:00
* Comment out below two lines in Postfix config file `/etc/postfix/main.cf`:
2016-01-05 06:34:35 -06:00
```cfg
content_filter = smtp-amavis:[127.0.0.1]:10024
2015-02-03 07:33:07 -06:00
receive_override_options = no_address_mappings # <- it's ok if you don't have this line
2014-09-16 09:57:24 -05:00
```
2016-01-05 06:34:35 -06:00
* Comment out below line in Postfix config file `/etc/postfix/master.cf`,
```cfg
-o content_filter=smtp-amavis:[127.0.0.1]:10026
```
* Restarting Postfix service is required.
* Disable network services: Amavisd, ClamAV.
Notes:
* ClamAV and SpamAssassin will be invoked by Amavisd, so if you disable Amavisd, those two are disabled too.
* SpamAssassin doesn't have daemon service running in iRedMail solution, so there's no need to stop SpamAssassin service.