[Mimedefang] EMAIL SUBJECT PARSING

David F. Skoll dfs at roaringpenguin.com
Tue Nov 19 14:22:01 EST 2002


On Tue, 19 Nov 2002 mdefang at vaznet.com wrote:

> I'd like to ask if anyone knows how to add a specific word that if it's
> contained in the subject of any email the MIMEDEFANG / SPAMASSASSIN
> combination will let it in even if it's tagged as spam ?

Why not do this in filter_end:

	if ($Subject =~ /My-Secret-Word/) {
		# Don't bother running SpamAssassin
		return;
        }

	# Do the usual spam-scanning here.

--
David.




More information about the MIMEDefang mailing list