Displaying 3 results from an estimated 3 matches for "todofolder".
Did you mean:
to_folder
2023 Mar 11
1
set imap flags in user sieve scripts
...];
# rule:[set todo]
if allof (header :contains "subject" "set imap flags in user sieve
scripts", header :contains "from" "user at example.org", header :contains
"to" "dovecot at dovecot.org")
{
setflag "todo";
fileinto "todofolder";
stop;
}
created in roundcube webmail
2023 Mar 11
1
set imap flags in user sieve scripts
Hi all
Could anyone lead me into the right direction please?
I use 'addflag ...' or 'fileinto :flags ...' in global sieve scripts to
flag and sort incoming mail - that works.
Trying to do that with custom user scripts doesn't work - I get the
error that imap4flags only can be used in global scripts. Is there any
way to get incoming mails labled and sorted by user sieve
2023 Mar 11
1
set imap flags in user sieve scripts
...; if allof (header :contains "subject" "set imap flags in user sieve scripts", header :contains "from" "user at example.org", header :contains "to" "dovecot at dovecot.org")
> {
> ??? setflag "todo";
> ??? fileinto "todofolder";
> ??? stop;
> }
>
> created in roundcube webmail