How To Install spamprobe on Fedora 34

spamprobe is A Bayesian spam filter

Introduction

In this tutorial we learn how to install spamprobe on Fedora 34.

What is spamprobe

A spam filter that takes a different approach from the typical hand crafted rules based systems. Instead of using pattern matching and a set of human generated rules SpamProbe relies on a Bayesian analysis of the frequency of words used in spam and non-spam emails received by an individual person. The process is completely automatic and tailors itself to the kinds of emails that each person receives. Spamprobe is not a mail filtering program itself but is designed to plug into another mail filtering system like procmail or Perl Mail

We can use yum or dnf to install spamprobe on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install spamprobe.

Install spamprobe on Fedora 34 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install spamprobe using dnf by running the following command:

sudo dnf -y install spamprobe

Install spamprobe on Fedora 34 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install spamprobe using yum by running the following command:

sudo yum -y install spamprobe

How To Uninstall spamprobe on Fedora 34

To uninstall only the spamprobe package we can use the following command:

sudo dnf remove spamprobe

spamprobe Package Contents on Fedora 34

/usr/bin/spamprobe
/usr/lib/.build-id
/usr/lib/.build-id/41
/usr/lib/.build-id/41/a440c30d30b267d3b92c82068c58d7c390f61c
/usr/share/doc/spamprobe
/usr/share/doc/spamprobe/ChangeLog
/usr/share/doc/spamprobe/LICENSE.txt
/usr/share/doc/spamprobe/README.txt
/usr/share/man/man1/spamprobe.1.gz

References

Summary

In this tutorial we learn how to install spamprobe on Fedora 34 using yum and dnf.