Handle tags for gmail email accounts

like mentioned here: https://github.com/ikvk/imap_tools/issues/174
This commit is contained in:
Stefan 2022-08-17 10:40:51 +02:00 committed by Trenton Holmes
parent 0878a199f4
commit edabf208bc

View File

@ -1,4 +1,5 @@
import os
import re
import tempfile
from datetime import date
from datetime import timedelta
@ -70,7 +71,11 @@ class TagMailAction(BaseMailAction):
return {"no_keyword": self.keyword}
def post_consume(self, M: MailBox, message_uids, parameter):
M.flag(message_uids, [self.keyword], True)
if re.search(r"gmail\.com$|googlemail\.com$", M._host):
for uid in message_uids:
M.client.uid("STORE", uid, 'X-GM-LABELS', self.keyword)
else:
M.flag(message_uids, [self.keyword], True)
def get_rule_action(rule):