UPDATE NOTE: This application was for an older version, do not use it anymore!

I have built a little application to get SpamAssasin working with Mail Enable as the old SAPlugin.exe didn’t seem to work for me. It’s pretty simple and the source code is included so you can modify it however you desire. The features are:

  • Calls SpamAssasin to check emails
  • Can quarantine emails so they don’t go to the user’s inbox
  • Always writes over the email so you can check spam scores

Here’s the config file to show how simple an applciation this is. Please note that SpamAssasin has a problem with long file names and spaces so it seems to be best to use the shortnames for its location.

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <appSettings>
    <add key="SpamAssasinExe" value="C:\PROGRA~2\JAMSOF~1\SPAMAS~1\SPAMAS~1.EXE"/>
    <add key="QuarantineDirectory" value="C:\Program Files (x86)\Mail Enable\Quarantine\Messages" />
    <add key="DebugOutput" value="true"/>
  </appSettings>
</configuration>

You can download the application & source code from my projects page here.

UPDATE NOTE: This application was for an older version, do not use it anymore!