Bit of an odd one this.
I have a sieve script that forwards certain messages to an external email address based on subject line, marks them as read and then moves them into my trash folder as follows:
Code: Select all
{
redirect :copy "me@privacy.net";
addflag "\\Seen";
fileinto "Deleted Items";
}
The sieve script is serving it's purpose, however Roundcube seems to be seeing the moved messages as unread:
Which is odd because when I click into the folder, the messages are marked as read:
No amount of refreshing/moving from folder to folder/logging out/back in seems to help. Similar behaviour is witnessed using other email clients (notably the K9 Android app).
Any ideas? I've tried using both the imap4flags and the depreciated imapflags extensions:
Code: Select all
require ["copy","fileinto","imap4flags"];
Code: Select all
require ["copy","fileinto","imapflags"];
Bob.