Q: Where I can found new version and how are they announced?
A: New versions are downloadable from sagator's web page
   and from sourceforge.net Files section.
   There are also repositories for Fedora Core 1 and 2 and for debian.
   Look at sagator's home page for more information.

   New releases are announced in sagator-users mailing list at sourceforge
   and via Freshmeat.net.

Q: Is it possible to avoid scan mail larger than a fixed size?
A: Yes! You can use max_file_size() scanner. For example:
   SCANNERS=[
    (const(1.0)-max_file_size(BYTES)) & ANY_SCANNER()
   ]
   Where: BYTES = whole message bytes with message header and all
                  attachments encoded in 7bit (base64,uuencode,...)
          ANY_SCANNER() = an sagator scanner

   How it works?
   max_file_size() scanner returns a virus, if a message size exceeds defined
   byte count. const(1.0) return's always a virus.
   Then returned levels are calculated.
   If size is larger:
     1.0 - 1.0 = 0.0
   if size is smaller:
     1.0 - 0.0 = 1.0
   The "and" operator is called over this value. Scanner after "&" is called,
   when returned level is >= 1.0.

Q: I need to add some special headers into email's header.
A: You can use add_header() scanner. For example:
     SCANNERS=[
       add_header('X-New-Header', 'Headers data ...', const(0.0, 'X')),
       ...
     ]

Q: I have a question, which not found in this document. What now?
A: You can use sagator-users(at)lists.sourceforge.net mailinglist
   or you can contact directly to author.
