Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Clarified the status of the page in response to Bug #7820

...

Information on running SpamD on Windows: SpamdOnWindows

You'll also find a pre compiled version of SpamAssassin for Windows that can simply be extracted and run here: http://www.openhandhomejam-software.com/howtosa.html provides more detailed step by step information. The below info is largely a digest of said info. This site is experiencing temporary domain name issues, and may be reached at http://64.142.36.76/howtosa.html in the meantime. It has not been modified recently.spamassassin/.

Note: The instructions below describe an obsolete procedure using tools which may no longer be available. They  reportedly do not work for SpamAssassin 3.4.1 using ActivePerl 5.20.2. ActivePerl now seems to force the use of dmake for Windows and some work will likely need to be done to make SpamAssassin compatible. We are seeking a working procedure for installation on modern versions of Windows. If  you can help, please send a  note to the dev list to get access to edit the Wiki. 

This HISTORICAL This installation procedure is for installing SpamAssassin in native Windows (not Cygwin) using Active{{`Perl 5.8.7.813 or later 5.8.x. ActivePerl (Tested on Active}}`Perl ActivePerl 5.8.89.820827).)

  1. Install or upgrade Perl if required:
    • If upgrading, make note of any modules you need to reinstall, uninstall ActivePerl and delete the /perl folder tree.
    • Download the current ActivePerl version 5.8.9.x 827 from www.activestate.com.
    • Install it.
    • Get nmake from Microsoft: http://download.microsoft.com/download/vc15/Patch/1.52/W95/EN-US/Nmake15.exe
    • Extract the nmake.exe and nmake.err files into your /perl/bin folder
    • Use PPM to install the required perl modules:

      No Format
      ppm install Win32Net-Registry-FileDNS
      ppm install Net-DNSNetAddr-IP
      


    • Use PPM to install the optional perl modules:

      No Format
      
      ppm repo add tcool
      ppm install DB_File
      ppm install Mail-SPF
      ppm install IP-Country
      ppm install Net-Ident
      ppm install IO-Socket-INET6
      ppm install IO-Socket-SSL
      ppm install Encode-Detect
      ppm repo add bribes
      ppm install Mail-SPF-QueryDKIM
      
      2.


  2. If you want to build spamc, install Microsoft Visual C++ 6.0 or later. For instructions on getting a no-cost version see BuildSpamcOnWindowsForFree. When you build SpamAssassin use a command prompt in which the VC++ environment variables are set. 3.
  3. Download the SpamAssassin zip file from www.spamassassin.org
  4. 4. Back up your settings if you already have it running. 5.
  5. Stop and disable SpamAssassin if it's running 6.
  6. Delete ~SpamAssassin directories, which may include:
    • c:\etc\mail\spamassassin
    • c:\perl\etc\mail\spamassassin
    • c:\perl\site\share\spamassassin
    • c:\perl\site\libvar\mail\spamassassin.pm and spamassassin folder
    • c:\perl\site\etclib\mail\spamassassin.pm and spamassassin folder
    • spamassassin or c:\perl\site\etc\mail\spamassassin
    • c:\perl\html\site\lib\mail\spamassassin or c:\spamdocs or whereever you put the docs last time
    • From c:\perl\bin\, delete spamassassin.* and c:\perl\bin\, sa-learn.*, sa-compile.* and c:\perl\bin\ sa-update.* 7.
  7. The following system environment variables may have to be set:
    • RES_NAMESERVERS=<your-dns-server-ip-address>
      • If you do not set this variable, SpamAssassin should use the first DNS server in your network configuration. That is useful when, for example, you move your computer between different networks and have DNS automatically assigned. If you experience problems with domain name resolution, try setting this variable to force SpamAssassin to use the specified nameserver.
    • LANG=en_US
      • This used to be required for SpamAssassin to work with perl 5.8.x. It should no longer be necessary, but there is no harm in having it set. If you have trouble getting SpamAssassin to run, try setting this.
      8.
  8. extract the zip file (make sure your extraction tool is able to handle unix style files, WinRar is a good choice, IZArc IS NOT!)
  9. Install SpamAssassin:
    • extract it to the c:\ folder with use folder names
    • in a command prompt: cd\mail-spamassassin-3.1.7open command prompt and switch to your spamassassin source directory and type
    • perl makefile.pl
      • Answer the questions as they are asked. Remember you can NOT build spamc without a C compiler installed and its environment set up.
    • nmake
    • nmake test (this is optional)
    • nmake install 9.
  10. Documentation should now be generated automatically by the install.
  11. 10. Copy the backed up configuration files into the site configuration folder, probably c:\perl\site\etc\mail\spamassassin. 11. Simple test (you should have no errors): spamassassin -D < sample-spam.txt
    12.
  12. Make a test folder. Copy sample-spam.txt and sample-nonspam.txt to that folder. 13.
  13. Open a command prompt to that folder. 14.
  14. Type sa-update --nogpgp
  15. Test the two files. Make sure they both run fine and the spam reports on each result file are appropriate.
    • spamassassin -D -t < sample-nonspam.txt > results-nonspam.txt
    • spamassassin -D -t < sample-spam.txt > results-spam.txt

Once it's installed, you can edit the local.cf file in c:\perl\site\etc\mail\spamassassin. You may want to visit http://www.rulesemporium.com and get extra rulesets. These rulesets should also go in the c:\perl\site\etc\mail\spamassassin folder. (This assumes you've installed activeperl in c:\perl as it defaults to. If you install it somewhere else, you'll need to adjust the path accordingly.)

Note: ActivePerl's 5.8.8.820 ppm installer currently (2007-02-28) installs a separate copy of ERRNO if you install Mail-IMAPClient. The copy of ERRNO it installs is not complete and causes the SpamAssassin command-line interface to fail. If you need Mail-IMAPClient installed, download a copy from CPAN and use perl makefile.pl/nmake/nmake install to install it. You can install the Parse-RecDescent depencency using ppm if you need it-- just not Mail-IMAPClient itself.

Using sa-update

Wiki Markup To use sa-update with GPG, you should download \[http://www.gpg4win.org/ GPG for Windows\], install it and add the 8.3 file path to your system path. The default path would be C:\PROGRA~1\GNU\GNUPG.

by BretMillerCategoryInstall CategoryInstall

modified for 3.3.1 by DanielLemke