[Mimedefang] .help with getting more information on spam.

David F. Skoll dfs at roaringpenguin.com
Thu Apr 24 11:54:00 EDT 2003


On Thu, 24 Apr 2003, Alan Williamson wrote:

> At the moment the Quarantine messages suck ... they have no useful
> information in them.  I want the SA report to be on the end of it, so I can
> see WHY it was marked as spam.

> I have followed advice of putting: push(@Warnings, "$report\n");

That won't work.  Put everything in the argument to
action_notify_administrator().  The argument to that function can be a whole
long message body; it doesn't have to be a short string.

eg:

	$notify = "A message was quarantined because of spam.\n";
	$notify .= "Here's the SA report:\n\n" . $sareport . "\n";
	action_notify_administrator($notify);

--
David.



More information about the MIMEDefang mailing list