cluster

Infrastructure files for Nordgedanken and Midnightthoughts.
git clone git://archive.git.mtrnord.blog/MTRNord/cluster.git
Log | Files | Refs | README

antivirus.conf (464B)


      1 # documentation: https://rspamd.com/doc/modules/antivirus.html
      2 
      3 enabled = true;
      4 
      5 clamav {
      6     type = "clamav";
      7     servers = "localhost:3310";
      8     action = "reject";
      9     message = '${SCANNER} FOUND VIRUS "${VIRUS}"';
     10     scan_mime_parts = false;
     11     symbol = "CLAM_VIRUS";
     12     log_clean = true;
     13     max_size = 25000000;
     14     timeout = 10;
     15     retransmits = 2;
     16     patterns {
     17         # symbol_name = "pattern";
     18         JUST_EICAR = '^Eicar-Test-Signature$';
     19     }
     20 }