Sieve
    Andre Henry 
    Andre at hudat.com
       
    Fri Oct 20 12:06:18 EDT 2006
    
    
  
I have a user that would like copies off all email to go to a subfolder 
of his mailbox and to keep a copy in the main inbox. However it seems 
as if duplicate delivery suppression is killing that plan. Short of 
making a new mailbox, how can I accomplish this.
The script I am using is below.
--
Thanks
Andre
# Sieve Filter
# Generated by Ingo (http://www.horde.org/ingo/) (October 20, 2006, 
9:52 am)
require "fileinto";
if address :all :comparator "i;ascii-casemap" :is "To" "*"  {
     keep;
     fileinto "Archived-Mail";
     stop;
} 
    
    
More information about the Info-cyrus
mailing list