Hi,
I need help with a sieve script.
I added this script to my sieve server.
Code:
require ["imap4flags","fileinto","vacation"];
# rule:[Netgear]
if allof (header :is "Subject" "NETGEAR DGN2200v3 Log")
{
setflag "\\Seen";
fileinto "NetgearLog";
}
# rule:[RenatoResponder]
if allof (header :contains "From" "aDomainName")
{
vacation :subject "Subject" "bodyMsg";
}
The first rule works as expected, if the email contains the netgear subject it moves it to the netgearlog folder and mark the email as read.
The second should answer with a vacation msg, I see no error at all in log but no msg is sent.
Can you help plese?
Have you got an idea on how to troubleshoot this problem?