Book Image

SpamAssassin: A practical guide to integration and configuration

Book Image

SpamAssassin: A practical guide to integration and configuration

Overview of this book

As a busy administrator, you know Spam is a major distraction in todays network. The effects range from inappropriate content arriving in the mailboxes up to contact email addresses placed on a website being deluged with unsolicited mail, causing valid enquiries and sales leads to be lost and wasting employee time. The perception of the problem of spam is as big as the reality. In response to the growing problem of spam, a number of free and commercial applications and services have been developed to help network administrators and email users combat spam. Its up to you to choose and then get the most out of an antispam solution. Free to use, flexible, and effective, SpamAssassin has become the most popular open source antispam application. Its unique combination of power and flexibility make it the right choice. This book will now help you set up and optimize SpamAssassin for your network.
Table of Contents (24 chapters)
SpamAssassin
Credits
About the Author
About the Reviewers
Introduction
Glossary

Installing by Hand


It is possible to install SpamAssassin from source without using the CPAN module. The prerequisites are the same as when installing SpamAssassin via CPAN.

To install most Perl modules, including CPAN and Mail-SpamAssassin, there is a fairly standard set of commands. These can be repeated for most modules:

$ gunzip -c Module-9.99.tar.gz | tar xf -
$ cd Module-9.99
$ perl Makefile.PL
$ make test
su
# make install

When issuing the perl Makefile.PL command for a module, missing dependencies are often noted and appear as warnings:

Warning: prerequisite Xxx::Yyyy n.mm not found.

Before continuing, the appropriate missing dependencies should be downloaded and installed using the same sequence of commands. Once this is done, the installation of the original module can continue as before with perl Makefile.PL.