
Baruwa
======
<% 
	spam_items = [spam for spam in messages if spam.spam]
	policy_items = [spam for spam in messages if not spam.spam]
%>
% if spam_items:
Spam Report
============

Date/Time   From                     Subject          
==================================================================================================	
% for item in spam_items:
+ ${str(item.timestamp) + '\t' + item.from_address or '' + '\t' + item.subject or ''}              
% endfor
% endif
% if policy_items:
Policy Blocked Report
=====================

Date/Time   From                     Subject             
=================================================================================================
% for item in policy_items:
+ ${str(item.timestamp) + '\t' + item.from_address or '' + '\t' +item.subject or ''}              
% endfor
% endif

=================================================================================================
Powered by Baruwa Hosted http://www.baruwa.net
