2d39ac1ad4
milter is a Python extension module to enable Python scripts to attach to Sendmail's libmilter API, enabling filtering of messages as they arrive. Since it's a script, you can do anything you want to the message - screen out viruses, collect statistics, add or modify headers, etc. You can, at any point, tell Sendmail to reject, discard, or accept the message.
13 lines
423 B
Plaintext
13 lines
423 B
Plaintext
$OpenBSD: patch-setup_py,v 1.1.1.1 2004/11/25 15:19:20 xsa Exp $
|
|
--- setup.py.orig Sat Nov 20 18:22:12 2004
|
|
+++ setup.py Thu Nov 25 14:09:35 2004
|
|
@@ -3,7 +3,7 @@ import sys
|
|
from distutils.core import setup, Extension
|
|
|
|
# FIXME: on some versions of sendmail, smutil is renamed to sm
|
|
-libs = ["milter", "smutil"]
|
|
+libs = ["milter"]
|
|
|
|
# patch distutils if it can't cope with the "classifiers" or
|
|
# "download_url" keywords
|