; ; Form Fact File for the Virus Checker extension ; Pegasus Mail System, Copyright 1990-94 David Harris, all rights reserved. ; ; For information on the format of this file, see FFF.TXT in this directory. ; ; Flags are set to run extension at startup, hide name, ; Hide parent window, and allow Logging events ; ( 1 + 2 + 4 + 8 ) ; Form name = "Attachment anti-virus checker" Form DLL = ~a\virscn32.DLL Form type = COMPOSER 32-bit model = 1 Form flags = 15 Form tagname = "" ; ; Enter the anti-virus commandline in "Form Data" ; Code "%f" where filename to be checked is placed on commandline ; ; For Macafee Viruscan code something like: ; Form data = "c:\program files\Network Associates\scan32.exe "%f" /ALL /AUTOCLOSE" Form data = "C:\PROGRA~1\COMMON~1\NETWOR~1\ONDEMA~1\SCAN32\Scan32.exe /all /nosplash /sub /uiexonly "%f" /autoexit" ; ; For Norton Anti-Virus, code something like: ; Form data = "c:\program files\norton\navw32.exe "%f" /DOALLFILES" ; (See Appendix C of Reference guide - Using Commandline switches) ; ; For Norton Corporate Anti-Virus, code something like: ; Form data = "c:\program files\norton\navdx.exe "%f" /M" ; ; For InnoculateIT something like: ;Form data = "d:\program files\innoculateIT\vetnt.exe "%f"" ; ; To signal anti-virus commandline is in c:\Autoexec.bat ; Form data = "%virscn%" ; Add the commandline value to your Autoexec.bat (or equiv) without enclosing ; double quotes. ; SET VIRSCN=whatever ; ie SET VIRSCN=c:\program files\innoculateIT\vetnt.exe "%f" ; ; ; For F-PROT (DOS) or other 16 bit DOS virus scanners something like: ;Form data = "d:\fprot\f-prot.exe "!f" /NOBOOT /NOMEM /ARCHIVE /BEEP /LIST" ; ; The Exclamation point ('!') signals conversion of longfilenames to DOS 8.3 ; filenames is required. End