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;
}
----
Cyrus Home Page: http://cyrusimap.web.cmu.edu/
Cyrus Wiki/FAQ: http://cyrusimap.web.cmu.edu/twiki
List Archives/Info: http://asg.web.cmu.edu/cyrus/mailing-list.html

Reply via email to