Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

search criteria of IMAP protocol search command

Tags:

python

email

imap

I read from here:

http://docs.python.org/2/library/imaplib.html
IMAP4.search(charset, criterion[, ...])

that imaplib has the search method for me to search mails from my mail boxes.

But I don't understand what criterion are available, or is it that I can enter anything for it?

I searched that page,, but didn't get a clue.

like image 378
Jilin Avatar asked Jan 26 '14 09:01

Jilin


People also ask

What does IMAP protocol of python module by the name Imaplib means?

Python's client side library called imaplib is used for accessing emails over imap protocol. IMAP stands for Internet Mail Access Protocol. It was first proposed in 1986. Key Points: IMAP allows the client program to manipulate the e-mail message on the server without downloading them on the local computer.

How do I install Imaplib?

imaplib Module of Python: Installation The imaplib module is a pre-installed library of Python that comes with the Python installation packages, and that's why we don't have to do any installation process for installing this library.


2 Answers

I'm not sure how Python expects the criteria but I'm assuming it's the same as plain IMAP. Refer to the SEARCH command documentation (as larsks already suggested) and use a combination of keywords depending on what you want to retrieve. Examples of criteria:

SUBJECT Christmas

...retrieves messages containing "Christmas" in the subject line.

SUBJECT "New York"

...retrieves messages containing "New York" (without quotes) in the subject line.

OR TO boss SUBJECT resignation

...is to be read as (TO boss) OR (SUBJECT resignation) and will retrieve messages that either have "boss" in the "To" field or contain "resignation" in the subject line.

As you can see above, IMAP Search uses a prefix notation in its criteria that may at first be confusing. You can reason about them using brackets or else by graphically drawing a tree of criteria - especially useful when you get nested ANDs or ORs.

There is a fair amount of different criteria you can use. Refer to the RFC for the whole list.

It may be helpful to interact with IMAP manually (e.g. using telnet) to get used to the structure of SEARCH requests before you spend time coding it.

like image 52
Gigi Avatar answered Nov 15 '22 17:11

Gigi


You may use imap_tools package: https://pypi.org/project/imap-tools/

Implemented the search logic described in rfc3501.

from imap_tools import Q, AND, OR, NOT
# base
mailbox.fetch('TEXT "hello"')  # str
mailbox.fetch(b'TEXT "\xd1\x8f"')  # bytes
mailbox.fetch(Q(subject='weather'))  # query, the str-like object
# AND
Q(text='hello', new=True)  # 'TEXT "hello" NEW'
# OR
OR(text='hello', date=datetime.date(2000, 3, 15))  # '(OR TEXT "hello" ON 15-Mar-2000)'
# NOT
NOT(text='hello', new=True)  # '(NOT TEXT "hello" NEW)'
# complex:
# 'TO "[email protected]" (OR FROM "[email protected]" TEXT "\\"the text\\"") (NOT (OR UNANSWERED NEW))')
Q(OR(from_='[email protected]', text='"the text"'), NOT(OR(Q(answered=False), Q(new=True))), to='[email protected]')
# encoding
mailbox.fetch(Q(subject='привет'), charset='utf8')  # 'привет' will be encoded by MailBox._criteria_encoder

see docs for more info.

like image 34
Vladimir Avatar answered Nov 15 '22 19:11

Vladimir