diff --git a/doc/faq.ht b/doc/faq.ht index c07267c..2d27cf1 100644 --- a/doc/faq.ht +++ b/doc/faq.ht @@ -20,6 +20,21 @@ RedHat 7.2?
A. RedHat forgot to include the header in the RPM. See the RedHat 7.2 requirements.
+
+ImportError: /usr/lib/python2.4/site-packages/milter.so: undefined symbol: smfi_setmlreply ++
A. Your libmilter.a is from sendmail-8.12 or earlier. You need + sendmail-8.13 or later to support setmlreply. You can disable + setmlreply by changing setup.py. Change: +
+ define_macros = [ ('MAX_ML_REPLY',32) ]
+
+in setup.py to
+
+ define_macros = [ ('MAX_ML_REPLY',1) ]
+