Summary | ingo unable to create "deliver to inbox and second folder AND tag the message as seen" type rules |
Queue | Ingo |
Queue Version | 1.0.1 |
Type | Bug |
State | Resolved |
Priority | 1. Low |
Owners | Horde Developers (at) |
Requester | liamr (at) umich (dot) edu |
Created | 02/01/2005 (7465 days ago) |
Due | |
Updated | 04/22/2005 (7385 days ago) |
Assigned | 02/01/2005 (7465 days ago) |
Resolved | 04/22/2005 (7385 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
State ⇒ Resolved
State ⇒ Assigned
State ⇒ Unconfirmed
Priority ⇒ 1. Low
Type ⇒ Bug
Summary ⇒ ingo unable to create "deliver to inbox and second folder AND tag the message as seen" type rules
Queue ⇒ Ingo
I can use sieve to mark messages as "seen" and "deleted" and put them in my
inbox.
60: # example
61: if address :all :comparator "i;ascii-casemap" :contains "From"
"example.com" {
62: addflag ["\\Deleted", "\\Seen"];
63: keep;
64: removeflag ["\\Deleted", "\\Seen"];
65: }
I can use sieve to mark messages as "seen" and "deleted" and put them
in another
folder.
60: # example
61: if address :all :comparator "i;ascii-casemap" :contains "From"
"example.com" {
62: addflag ["\\Deleted", "\\Seen"];
63: fileinto "sort";
64: removeflag ["\\Deleted", "\\Seen"];
65: }
I can use sieve to deliver messages to my inbox *and* put them in another
folder..
60: # example
61: if address :all :comparator "i;ascii-casemap" :contains "From"
"example.com" {
62: keep;
63: fileinto "sort";
64: }
65:
but I am unsuccessful in getting it to mark them as "seen" and "deleted" AND
deliver them to my inbox and another folder. All it does is the delivery, not
the marking.
60: # example
61: if address :all :comparator "i;ascii-casemap" :contains "From"
"example.com" {
62: keep;
63: fileinto "sort";
64: }
65:
Is this a Sieve limitation, or is Ingo generating the rule incorrectly?