Displaying 1 result from an estimated 1 matches for "autoalerts".
Did you mean:
autoalert
2012 Aug 27
2
Dovecot sieve and duplicate email subjects
...interface or manually
inside the user's personal sieve folder.
I have an email account setup to receive automated tasks.
Some of these "alerts" occur too often and they have the same subject line,
but different senders.
This is the rule I am currently using:
##CODE START##
# rule:[AutoAlerts]
if anyof (
header :matches "Subject" "AutoAlert Type1*",
header :matches "Subject" "AutoAlert Type2*",
header :matches "Subject" "AutoAlert Type3*"
)
{
fileinto "INBOX.AutoAlerts";
stop;
}
##CODE END##
I was...