Dspam: Difference between revisions

From QmailToaster
Jump to navigation Jump to search
No edit summary
No edit summary
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
[[User_Tips_%26_Tricks#Anti_Spam|Back]]<br>
  Install Dspam:
  Install Dspam:
  wget https://raw.githubusercontent.com/qmtoaster/dspam/master/dspamdb.sh
  wget https://raw.githubusercontent.com/qmtoaster/dspam/master/dspamdb.sh
  chmod 755 dspamdb.sh
  chmod 755 dspamdb.sh
  ./dpsamdb.sh
  ./dpsamdb.sh<br>
 
  Running the script 'dspamdb.sh' creates the dspam database, installs dspam, and starts the dspam service.
  Running the script 'dspamdb.sh' creates the dspam database, installs dspam, and starts the dspam service.
  If dspam is implemented for a domain, every email received by that domain will have a dspam signature in the header and a
  If dspam is implemented for a domain, every email received by that domain will have a dspam signature in the header and a
  matching signature will automatically be entered in the dspam maria/mysql database. At this point there has been no training.
  matching signature will automatically be entered in the dspam maria/mysql database. At this point there has been no training.
  To train I have users create a spam and notspam folder in their IMAP account. All spam will be placed into the spam folder and
  To train I have users create a spam and notspam folder in their IMAP account. All spam will be placed into the spam folder and
  all ham into the notspam folder. I run a bash script enumerating all mail in these folders and dumping each to dspam.  
  all ham into the notspam folder. I run a bash script enumerating all mail in these folders and dumping each to dspam.<br>
 
  If there are spam filters in front of dspam that insert header signatures dspam's configuration file must enumerate them
  If there are spam filters in front of dspam that insert header signatures dspam's configuration file must enumerate them
  so that they can be ignored for training purposes. Below are the Spamassassin signatures with the proper configuration syntax:
  so that they can be ignored for training purposes. Below are the Spamassassin signatures with the proper configuration syntax:<br>
 
  IgnoreHeader X-Spam-Checker-Version
  IgnoreHeader X-Spam-Checker-Version
  IgnoreHeader X-Spam-Level
  IgnoreHeader X-Spam-Level
Line 18: Line 16:
  IgnoreHeader X-Spam-Flag
  IgnoreHeader X-Spam-Flag
  IgnoreHeader X-Spam-Report
  IgnoreHeader X-Spam-Report
  IgnoreHeader X-Spam-Prev-Subject
  IgnoreHeader X-Spam-Prev-Subject<br>
 
  Here's a list of headers to ignore for your config file: https://raw.githubusercontent.com/qmtoaster/dspam/master/IgnoreHeader<br>
  Here's a list of headers to ignore for your config file: https://raw.githubusercontent.com/qmtoaster/dspam/master/IgnoreHeader
  Training:<br>
 
  Training:
 
   Flag options:
   Flag options:
       SOURCE=corpus/error  
       SOURCE=corpus/error  
       CLASS=spam/innocent
       CLASS=spam/innocent
       MODE=toe/teft/unlearn
       MODE=toe/teft/unlearn<br>
 
   Dspam call:
   Dspam call:
       cat $email | dspam --user $USER@$DOMAIN --mode=$MODE --class=$CLASS --source=$SOURCE
       cat $email | dspam --user $USER@$DOMAIN --mode=$MODE --class=$CLASS --source=$SOURCE<br>
 
   Source: Depending on email source, corpus or error, dspam must be called with the flags set below.
   Source: Depending on email source, corpus or error, dspam must be called with the flags set below.
       1) Corpus (no dspam signature present in header) Depending on type of corpus, ham or spam, class appropriately.
       1) Corpus (no dspam signature present in header) Depending on type of corpus, ham or spam, class appropriately.
Line 41: Line 34:
         CLASS=spam
         CLASS=spam
         MODE=toe
         MODE=toe
       3) Error (dspam signature present in header) dspam catagorized ham as spam, dspam must be called twice, to unlearn and
       3) Error (dspam signature present in header) dspam catagorized ham as spam, dspam must be called twice, to unlearn/train.
                                                  train.
         A)  
         A)  
             SOURCE=error
             SOURCE=error
Line 50: Line 42:
             SOURCE=error
             SOURCE=error
             CLASS=innocent
             CLASS=innocent
             MODE=toe
             MODE=toe<br>
 
  Server side filtering 1) Before queue, 2) after queue :<br>
  Server side filtering 2 options 1) Before queue, 2) after queue :
 
  Option 1)
  Option 1)
   https://www.qmailtoaster.org/simscan.html
   [[Simscan#Filtering|Simscan]]
 
 
  Option 2a Domain level)
  Option 2a Domain level)
   If dspam is enabled at domain level in .qmail-default use this file:
   If dspam is enabled at domain level in .qmail-default use this file:
Line 64: Line 52:
   # chmod 600 .qmail-default && chown vpopmail:vchkpw .qmail-default
   # chmod 600 .qmail-default && chown vpopmail:vchkpw .qmail-default
   # wget https://raw.githubusercontent.com/qmtoaster/dspam/master/.qmail-default
   # wget https://raw.githubusercontent.com/qmtoaster/dspam/master/.qmail-default
  Option 2b User level)
  Option 2b User level)
   If dspam is enabled at user level you must install maildrop and download and install two files  
   If dspam is enabled at user level you must install maildrop and download and install two files  
Line 74: Line 61:
   # chown vpopmail:vchkpw .mailfilter.dspam
   # chown vpopmail:vchkpw .mailfilter.dspam
   # chmod 600 .qmail
   # chmod 600 .qmail
   # chmod 600 .mailfilter.dspam
   # chmod 600 .mailfilter.dspam<br>
 
  Mail should flow and be logged
  Mail should flow and be logged
   # cat /var/log/maildrop/maildrop-'user'@'dspam-enabled-domain'.log
   # cat /var/log/maildrop/maildrop-'user'@'dspam-enabled-domain'.log<br>
At this point in your email client you must create the 'spam' and 'notspam' folders and start placing spam in the spam folder to be learned by the
script.


At this point in your email client you must create the 'spam' and 'notspam' folders and start placing spam in the spam folder to be learned by the script.
== [[Dspam w/PostgreSQL]] ==

Latest revision as of 11:09, 30 March 2024

Back

Install Dspam:
wget https://raw.githubusercontent.com/qmtoaster/dspam/master/dspamdb.sh
chmod 755 dspamdb.sh
./dpsamdb.sh
Running the script 'dspamdb.sh' creates the dspam database, installs dspam, and starts the dspam service. If dspam is implemented for a domain, every email received by that domain will have a dspam signature in the header and a matching signature will automatically be entered in the dspam maria/mysql database. At this point there has been no training. To train I have users create a spam and notspam folder in their IMAP account. All spam will be placed into the spam folder and all ham into the notspam folder. I run a bash script enumerating all mail in these folders and dumping each to dspam.
If there are spam filters in front of dspam that insert header signatures dspam's configuration file must enumerate them so that they can be ignored for training purposes. Below are the Spamassassin signatures with the proper configuration syntax:
IgnoreHeader X-Spam-Checker-Version IgnoreHeader X-Spam-Level IgnoreHeader X-Spam-Status IgnoreHeader X-Spam-Flag IgnoreHeader X-Spam-Report IgnoreHeader X-Spam-Prev-Subject
Here's a list of headers to ignore for your config file: https://raw.githubusercontent.com/qmtoaster/dspam/master/IgnoreHeader
Training:
Flag options: SOURCE=corpus/error CLASS=spam/innocent MODE=toe/teft/unlearn
Dspam call: cat $email | dspam --user $USER@$DOMAIN --mode=$MODE --class=$CLASS --source=$SOURCE
Source: Depending on email source, corpus or error, dspam must be called with the flags set below. 1) Corpus (no dspam signature present in header) Depending on type of corpus, ham or spam, class appropriately. SOURCE=corpus CLASS=spam or innocent MODE=teft 2) Error (dspam signature present in header) dspam catagorizes spam as ham SOURCE=error CLASS=spam MODE=toe 3) Error (dspam signature present in header) dspam catagorized ham as spam, dspam must be called twice, to unlearn/train. A) SOURCE=error CLASS=spam MODE=unlearn B) SOURCE=error CLASS=innocent MODE=toe
Server side filtering 1) Before queue, 2) after queue :
Option 1) Simscan Option 2a Domain level) If dspam is enabled at domain level in .qmail-default use this file: # cd /home/vpopmail/'dspam-enabled-domain' # mv .qmail-default .qmail-default.bak # chmod 600 .qmail-default && chown vpopmail:vchkpw .qmail-default # wget https://raw.githubusercontent.com/qmtoaster/dspam/master/.qmail-default Option 2b User level) If dspam is enabled at user level you must install maildrop and download and install two files .qmail and .mailfilter.dspam (or .mailfilter) in each user directory for which Dspam will be enabled. # cd /home/vpopmail/'dspam-enabled-domain'/'user' # wget https://raw.githubusercontent.com/qmtoaster/dspam/master/.qmail # wget https://raw.githubusercontent.com/qmtoaster/dspam/master/.mailfilter.dspam # chown vpopmail:vchkpw .qmail # chown vpopmail:vchkpw .mailfilter.dspam # chmod 600 .qmail # chmod 600 .mailfilter.dspam
Mail should flow and be logged # cat /var/log/maildrop/maildrop-'user'@'dspam-enabled-domain'.log
At this point in your email client you must create the 'spam' and 'notspam' folders and start placing spam in the spam folder to be learned by the script.

Dspam w/PostgreSQL