Hi All, I have 7.0.0_GA_3077_CentOS5_64 almost works fine but I have some troubles with sieve scripts:
if I reciv mail from
b.robot@somedomain.org.
Code:
require ["fileinto", "reject", "tag", "flag"];
# from_robot
if anyof (header :is ["from"] "robot") {
fileinto "robot";
stop;
} works fine, but:
Code:
require ["fileinto", "reject", "tag", "flag"];
# from_robot
if anyof (header :is ["from"] "b.robot@somedomain.org") {
fileinto "robot";
stop;
} doesn't work
Thanks in advance