Home | Contact Us | Forums | Store | About Us

SmarterMail User Extraction Utility

 
   

We are providing the following tool as a free utility for our customers. It will extract the Smarter Mail user list in a format which can be used by IMgate. If you don't already have Smarter Mail you should really look into it. It is a great replacement for iMail and other Windows Mail Servers.

Click here to download: smmailuser.zip  (version 1.04, last updated February 19, 2005)

  Note: This program is provided as-is with no warrantee or guarantee that it will do anything of value.  
     
  How to use the file...  
  1. Download and extract the smmailuser.zip to your mail server.  
  2. Run the following command:  
  smmailuser c:\path_to_SmarterMail > outputfile.txt  
  Example:  
 
C:\AdminTools\smmailuser.exe "C:\Program Files\SmarterTools\SmarterMail" names.txt
 
     

SmarterMail F-PROT Anti-Virus Script

 
  Below is the script we use to call the F-PROT anti-virus scanner from with-in Smarter Mail.  
  How to use:  
  Install F-PROT  (Note: Do NOT install the real time protection).  
  Copy following script to c:\admin  
  In SmarterMail set the following values:  
        Under Settings; Protocol Settings; SMTP
      Command-line EXE or batch file to run on new mail: c:\admin\virusscan.cmd %filepath
      Command-line timeout: 5 sec
 
     
  Under Settings; Anti-Virus Administration  
      Enable: Virus scanner installed on server
    Quarantine directory: D:\SmarterMail\Viruses
    Virus Action: Delete
 
  Create the directory: D:\SmarterMail\Viruses (Note: If you adjust this path make sure you adjust the path in the script)  
     
  Script VirusScan.cmd  
  SET ERR=0
@REM call "C:\Program Files\FSI\F-Prot\fpcmd.exe" -silent -auto -ai -archive -saferemove -disinf -del -append %1
call "C:\Program Files\FSI\F-Prot\fpcmd.exe" -silent -auto -ai -archive -saferemove -disinf -del -append -report=d:\logs\virusscan.log %1
IF NOT ERRORLEVEL 1 GOTO CLEAN
IF ERRORLEVEL 1 SET ERR=1
IF ERRORLEVEL 2 SET ERR=2
IF ERRORLEVEL 3 SET ERR=3
IF ERRORLEVEL 4 SET ERR=4
IF ERRORLEVEL 5 SET ERR=5
IF ERRORLEVEL 6 SET ERR=6
@REM echo Virus scanned by F-Prot (%ERR%) viruses found>> %1
MOVE /Y %1 D:\SmarterMail\Viruses
GOTO END
:CLEAN
@REM echo Virus scanned by F-Prot (%ERR%) viruses found >> %1
:END