freebsd-ports/mail/smfsav/files/patch-readme
Pav Lucistnik c80e1983fb It's a lightweight, fast and reliable Sendmail milter that implements
a real-time Sender e-Mail Address Verification technology. This technology
can stop some kinds of SPAM with a spoofed sender's e-Mail address.
  Also it implements a real-time Recipient e-Mail Address Verification
technology. It can be useful if your machine is a backup MX for the recipient's
domains or if your machine forwards all e-Mail messages as a relay host for your
domains to another internal or external e-Mail servers.
  It's a lite alternative for the spamilter, milter-sender and milter-ahead
milters.

WWW: http://smfs.sourceforge.net/

PR:		ports/116948
Submitted by:	Anton Lysenok / Bart Tapolsky <bart@tapolsky.net.ua>
2008-02-17 21:16:46 +00:00

28 lines
1.2 KiB
Text

--- readme.orig 2006-10-25 23:15:10.000000000 +0300
+++ readme 2008-02-17 14:50:09.000000000 +0200
@@ -38,21 +38,18 @@
make
make install
- Inspect and edit the /etc/mail/smfs/smf-sav.conf file.
+ Inspect and edit the /usr/local/etc/smfsav.conf file.
-/usr/local/sbin/smf-sav
+/usr/local/sbin/smfsav
or
-/usr/local/sbin/smf-sav -c /etc/mail/smfs/smf-sav.conf
+/usr/local/sbin/smfsav -c /usr/local/etc/smfsav.conf
Add this milter to start-up scripts before starting a Sendmail daemon.
Look at the contributed samples of start-up scripts.
Add these lines to your Sendmail configuration file (usually sendmail.mc):
define(`confMILTER_MACROS_HELO', confMILTER_MACROS_HELO`, {verify}')dnl
-INPUT_MAIL_FILTER(`smf-sav', `S=unix:/var/run/smfs/smf-sav.sock, T=S:30s;R:4m')dnl
-
-IMPORTANT: make sure that /var/run is not a group writable directory! If so,
-or chmod 755 /var/run, or if it's impossible switch to another directory.
+INPUT_MAIL_FILTER(`smfsav', `S=unix:/var/run/smfsav/smfsav.sock, T=S:30s;R:4m')dnl
IMPORTANT: make sure that libmilter is compiled with BROKEN_PTHREAD_SLEEP defined.
If this symbol is not defined, libmilter will use sleep() in signal-handler thread,