Searching Imap Inbox For Messages From A Specific Sender And Use Of Wild Cards? February 02, 2024 Post a Comment Is it possible to use wildcards in searching for a specific sender on IMAP folder? typ, data = M.SEARCH(None, 'from',''security@website*'')Solution 1: IMAP RFC 3501 6.4.4:In all search keys that use strings, a message matches the key if the string is a substring of the field. The matching is case-insensitive.So you need to search without * and you should almost similar result. (you get security@website ...) Share Post a Comment for "Searching Imap Inbox For Messages From A Specific Sender And Use Of Wild Cards?"
Post a Comment for "Searching Imap Inbox For Messages From A Specific Sender And Use Of Wild Cards?"