You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by Apache Wiki <wi...@apache.org> on 2011/03/10 21:32:13 UTC

[Spamassassin Wiki] Update of "IntegratePostfixViaSpampd" by Darxus

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Spamassassin Wiki" for change notification.

The "IntegratePostfixViaSpampd" page has been changed by Darxus.
The comment on this change is: Handling large emails.
http://wiki.apache.org/spamassassin/IntegratePostfixViaSpampd?action=diff&rev1=10&rev2=11

--------------------------------------------------

  
  - RodRoark
  
+ == Handling Large Emails ==
+ By default, spampd passes through all emails over 65536 bytes.  This is set by --maxsize.  Increasing this limit can cause memory usage problems.  Larger email can be blocked by postfix with the main.cf option:
+ {{{
+ message_size_limit = 65536
+ }}}
+ Or you can scan all larger emails via procmail after postfix with the procmail rule:
+ {{{
+ :0fw: spamassassin.lock
+ * > 65536
+ | spamassassin
+ 
+ :0:
+ * ^X-Spam-Status: Yes
+ spam
+ }}}
+