> From: Mark Penkower [mailto:[EMAIL PROTECTED] > I added the follwoing code to my filter: > > action_add_header("X-Spam-Checked-By", "Custom Spam Checking Rules"); > > When I send email to myself locally, the header only appears > once. If I send email to myself from an external account, > the header appears 2 or 3 times. > > Why?
You have it in filter($...) which gets called multiple times per email Consider putting it in filter_end(...) instead which only gets called at the end Consider using action_change_header instead which will replace the header if it exists _______________________________________________ Visit http://www.mimedefang.org and http://www.canit.ca MIMEDefang mailing list [EMAIL PROTECTED] http://lists.roaringpenguin.com/mailman/listinfo/mimedefang

