Is it possible to use wildcards in searching for a specific sender on IMAP folder?
typ, data = M.SEARCH(None, 'from','"security@website*"')
Is it possible to use wildcards in searching for a specific sender on IMAP folder?
typ, data = M.SEARCH(None, 'from','"security@website*"')
IMAP RFC 3501 6.4.4:
So you need to search without * and you should almost similar result. (you get security@website ...)