Synchronet v3.19b-Win32 (install) has been released (Jan-2022).

You can donate to the Synchronet project using PayPal.

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
module:spamc [2010/02/25 00:03] digitalmanmodule:spamc [2010/03/17 11:15] (current) digitalman
Line 1: Line 1:
 ====== SpamAssassin Client ====== ====== SpamAssassin Client ======
-{{tag>antispam}} +This module is a JavaScript implementation of the SpamAssassin spamd client (''spamc''). 
-FIXME+ 
 +===== Source ===== 
 +Current version is available [[http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/spamc.js|here]]. 
 + 
 +''spamc.js'' is dependent on ''[[http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/salib.js|salib.js]]''
 + 
 +===== Installation ===== 
 + 
 +Example mailproc.ini entries: 
 + 
 +Modify and pass-through all messages: 
 +  [spamc.js] 
 + 
 +Modify SPAM messages only, pass-through all: 
 +  [spamc.js spamonly] 
 + 
 +Reject SPAM messages, modify and pass-through HAM: 
 +  [spamc.js reject] 
 + 
 +Reject SPAM messages over specified score threshold, modify and pass-through HAM: 
 +  [spamc.js reject 8.0] 
 + 
 +Reject SPAM messages over specified score threshold, modify SPAM, and pass-through HAM and SPAM: 
 +  [spamc.js reject 8.0 spamonly] 
 + 
 + 
 +===== Options ===== 
 + 
 +  dest <ip_address(also -d) 
 +  port <tcp_port> (also -p) 
 +  username <user> (also -u) 
 +  max-size <bytes> (also -s) 
 +  reject [threshold] 
 +  spamonly 
 +  debug 
 ===== See Also ===== ===== See Also =====
 +  * [[:howto:spamd|How To Use SpamAssassin with the Synchronet Mail Server]]
   * [[:config:mailproc.ini]]    * [[:config:mailproc.ini]] 
   * [[:server:mail|Mail Server]]   * [[:server:mail|Mail Server]]
   * [[:module:|Modules]]   * [[:module:|Modules]]
  
 +{{tag>spam email antispam}}