IMAPClient aims to be a easy-to-use, Pythonic and complete IMAP client library with no dependencies outside the Python standard library.
Questions tagged [imapclient]
68 questions
0
votes
1 answer
Pythons imaplib: fetch command, with or without parentheses, 'Invalid Fetch attribute' error for ALL item
I am trying to fetch messages from my IMAP server. This is a short version of my code:
>>> import imaplib
>>> m = imaplib.IMAP4_SSL(host='my.host.com')
>>> m.login('username', 'password')
>>> m.select('INBOX')
The imaplib module in python3.4 is…

pato
- 335
- 1
- 12
0
votes
0 answers
Newline characters disappearing
The issue that I am having is that when I download email messages from a Microsoft outlook webmail account, sometimes newline characters are disappearing, resulting in onelongunbrokenline. But only sometimes. Here is the example I am dealing with…

STN
- 585
- 2
- 6
- 15
0
votes
1 answer
Linux SLE11 SPC3 Mail::IMAPClient
i am trying to get the imapclient on my OS but it wont work. I added the perl repository like so:
zypper ar -f -n perl http://download.opensuse.org/repositories/devel:/languages:/perl/SLE_11_SP2 Perl
and i get the right output where it says…

tanghe
- 80
- 5
0
votes
1 answer
Can't install Python's IMAPClient
Trying to install IMAPClient using the command pip install IMAPClient. I'm on Windows, with Python 3.3.
It downloads fine, begins to install, then complains with ImportError: No module named 'response_parser'. I think that is an internal module for…

Bobby B
- 2,287
- 2
- 24
- 47
0
votes
3 answers
Using IMAPClient how do you view the Senders address?
Using IMAPClient how do I view the message body and the senders email address?
server = IMAPClient(imap_server, use_uid=True, ssl=ssl)
server.login(imap_user, imap_password)
print 'login successful'
select_info =…

David Vasandani
- 1,840
- 8
- 30
- 53
-1
votes
1 answer
Python / Email processing: How to get the date an attachment was created?
I have a Python program that will read an Outlook inbox using these Python libraries:
1. IMAPClient
2. email
I want to know if it is possible to get the date the email attachment was created.
I don't see anything in email headers that stand out. I…

user10664542
- 1,106
- 1
- 23
- 43
-2
votes
2 answers
How to install imapclient
I’m trying to use the IMAP client library:
https://imapclient.readthedocs.org/en/stable/
I download the zip:
https://pypi.python.org/pypi/IMAPClient/0.13
Next I used windows command prompt and pip to install:
Ran: pip install imapclient
This…

J.Mc
- 1
- 1
- 1
-4
votes
1 answer
POSTFIX: API or Documentation for developing IMAP-Client
I am looking for a API or Documentation for developing a IMAP-Client for POSTFIX. I am planning to use html5 for front end and php for backend.

srivishnu
- 103
- 1
- 5