On Fri, Sep 30, 2005 at 08:54:05AM -0500, Brian J. France wrote: > mod_smtpd_clamd.tar.gz > This is a module that sends the mail to clamd on the data_post hook. > It only works with TCP connections to clamd because apr doesn't support > unix domain sockets.
Unix Domain sockets are not portable beyond Unix, so there isn't much reason to support them in APR. Since the unix domain socket API is portable as-is (although using them on Solaris 10 is worth avoiding right now!) within unix. mod_cgid is a good place to copy from if you're interested in adding this support :) > mod_smtpd_spamd.tar.gz > This is a module that sends the mail to spamd on the data_post hook. > Currently this module will bounce mail that is spam if it over the spam > threshold + reject_level. More features to come like adding headers, > rewriting subject lines, etc. Cool! -- Colm MacCárthaigh Public Key: [EMAIL PROTECTED]
