How can I disable the ***UNCHECKED*** tag that Amavis applies to a message when an email is not able to be scanned?

Overview

Amavis automatically prepends the tag UNCHECKED to the subject line of emails that cannot be fully scanned or decoded. This indicator alerts recipients that the message bypassed standard security checks due to technical limitations, service interruptions, or content restrictions.

Disabling the UNCHECKED Tag (Not Recommended)

Note: Disabling this tag is not recommended, as it removes visibility into unscanned messages and may impact security compliance. Proceed only if explicitly required by your organization's policies.

  1. Open the appropriate configuration file for your operating system:
    • AlmaLinux/CloudLinux/RHEL: /etc/amavisd/warden.conf
    • Debian/Ubuntu: /etc/amavis/conf.d/99-warden
  2. Add the following line immediately before the final 1; statement:
$undecipherable_subject_tag = undef;

After making the changes, restart the Amavis service using the command corresponding to your distribution:

// Centos/RHEL/CloudLinux/AlmaLinux
systemctl restart amavisd

// Debian/Ubuntu
systemctl restart amavis
  1. Verify that the service restarted successfully and test with a sample email to confirm the tag is no longer applied.

Troubleshooting

If emails are frequently tagged as UNCHECKED, investigate the following common causes:

  • ClamAV Service Interruptions: The ClamAV antivirus daemon may be inactive, crashed, or experiencing high load. Verify that the service is running properly and resolve any underlying issues by reviewing: How can I check the status of ClamAV and fix any problems?
  • Password-Protected Archives: Amavis cannot extract or scan files within encrypted archives. When decoding fails, the tag is applied exclusively to local recipients. Ensure that sensitive attachments are not password-protected before submission.
  • UNCHECKED, amavis
  • 5 Users Found This Useful
Was this answer helpful?

Related Articles

How can I install or upgrade the extension?

We provide free installation and configuration for all our paid licenses. Open a support ticket...

How can I add stronger Postfix restrictions so that the bulk of spam is rejected at the SMTPD level before it gets processed by Amavis?

Overview Warden enables administrators to enforce stricter Postfix SMTPD restrictions. These...

How can I change the interface language of the extension?

Overview This article provides instructions on how to change the interface language within the...

How can I configure greylisting with Warden Anti-spam and Virus protection?

Overview Greylisting is an email filtering mechanism designed to mitigate spam by temporarily...