I have a problem with a sieve script..
my config is dovecot 1.2.15 with managesieve, and roundcube.
Now i have this script WORKING:
--
require ["fileinto"];
# rule:[TracSvil]
if anyof (header :contains "From" "xxx at example.com")
{
fileinto "INBOX.Trac Svil";
stop;
}
--
And this script NOT working:
require ["fileinto"];
# rule:[TracSvil]
if anyof (header :is "From" "trac at ardeek.com")
{
fileinto "INBOX.Trac Svil";
stop;
}
Can someone explain me the difference between these script? there is any error
in the second script?
Greetings!
--
Simone Caruso
IT Consultant
p.iva: 03045250838
On Wed, 10 Nov 2010 19:01:02 +0100, Simone Caruso wrote:> I have a problem with a sieve script.. > my config is dovecot 1.2.15 with managesieve, and roundcube. > if anyof (header :contains "From" "xxx at example.com") > if anyof (header :is "From" "trac at ardeek.com")":is" is an absolute match, ":contains" is a substring match. http://tools.ietf.org/html/rfc5228#section-2.7.1 -- Aleksander 'A.L.E.C' Machniak http://alec.pl LAN Management System Developer http://lms.org.pl Roundcube Webmail Project Developer http://roundcube.net