I just tried your patch with Cyrus timsieved v2.2.13 - and it almost works
When I create new rules they look like
Code:
require ["fileinto"];
# rule:[zuz]
if anyof (header :contains "Subject" "zuzu")
{
fileinto "Trash";
}
Unfortunately this doesn't work because the folder structure of my IMAP server relies on the "INBOX"-prefix. So if I change the rule manually to the following, it works:
Code:
require ["fileinto"];
# rule:[zuz]
if anyof (header :contains "Subject" "zuzu")
{
fileinto "INBOX.Trash";
}
Is there any way this could be set in the configuration file of your sieve plugin? Or maybe get the right configuration from roundcube?
Thanks