The imaplib tag has no wiki summary.
0
votes
1answer
22 views
Cannot Decode Encoding - Python and imaplib
I'm obtaining emails from IMAP using Python and imaplib. In this specific case I'm having a problem with the To: addresses.
I extract the encoded To: field, separate the addresses and then try to ...
0
votes
1answer
59 views
+50
imaplib2 : imap.gmail.com handler BYE response: System error
I'm renovating a python script that checks IMAP for new emails and sends a push notification if there's a new email. The problem is that every few hours I'm getting a crash. At first I couldn't really ...
1
vote
0answers
34 views
rpython and imaplib sending a search query to imap
I'm trying to import an email with a particular search string from the server. I'm using the following code.
library(rPython)
python.exec("import imaplib
import email")
python.exec('
...
0
votes
1answer
17 views
Why are .CAB attachments I fetch with imaplib corrupt?
I have an email that I am trying to download the attachment from, using imaplib.
I am using the Email library to translate messages to the email.message class. This is working perfectly for all of ...
0
votes
1answer
30 views
Extra Tabs in IMAP HTML Text
I'm using Python and imaplib to obtain emails from a IMAP server (supports all kinds of IMAP servers - GMail, etc.).
My problem is: Using the IMAP BODY[INDEX] command to fetch a specific body part, ...
0
votes
1answer
32 views
httplib to connect to IMAP email server?
I'm curious, can the httplib be jury rigged to connect to an IMAP email server?
I'm being forced to python connect to an IMAP server without using IMAPlib and while I've learned a lot about sockets ...
-1
votes
0answers
41 views
Programming test: Python imap without imaplib
so this is a pretty crazy assignment but I need to find a way to access an imap server without imaplib. I've looked over the imaplib documentation but that doesn't seem to really tell me anything ...
1
vote
1answer
23 views
Authenticating with imaplib.IMAP4 and OAuth without OAuth2
I'm using web.py to build a simple server that learns on a user's gmail messages. I've gone through the OAuth flow using the rauth library and I now have the access token. I now want to use imaplib to ...
0
votes
1answer
66 views
Imaplib on Google App Engine Python
Is there any way to support imaplib of python in google app engine.
I want to access gmail inbox using google app engine in python. The other way also exist to do this task. But I want it to do with ...
0
votes
1answer
50 views
Why can't I login to an imap server twice in Python
As the error message below states, I cannot log in because I'm in state LOGOUT and not in state NONAUTH. How do I get from LOGOUT to NONAUTH?
Example below (obviously the login credentials are faked ...
0
votes
1answer
33 views
Unknown Encoding in IMAP Message
I am obtaining text/HTML BODY parts of email messages using the IMAP protocol.
For this, what I do is use the BODYSTRUCTURE call to obtain the BODY index and the charset of a part, then use the ...
3
votes
0answers
58 views
How do I include chats in a Gmail IMAP search from Python's imaplib?
I'm happily using imaplib to get the message IDs in a specific label:
connection.select("MyLabel")
connection.uid('SEARCH', None, 'ALL'))
but if I've got some chats in that label, they aren't ...
2
votes
2answers
85 views
Obtain partial IMAP text part
I have an email interface client, and I am using IMAP for my requests. I want to be able to show, in real-time, basic email data, for a list view.
As in, for example, the GMail list view. For that, ...
2
votes
1answer
140 views
How to understand the equal sign '=' symbol in IMAP email text?
I am currently using Python imaplib to process email text.
I use fetch command to fetch the raw data email from GMail server. However, I found one thing really tricky - the equal sign '='. It is not ...
0
votes
1answer
129 views
Python imaplib download Gmail Text without downloading the full attachment
I am using 'imaplib' in python to fetch the email from a Gmail account. But I just want to know the content of the email, the title of the attachment, but do not need to download the full attachment.
...
0
votes
0answers
108 views
Python IMAP: Cannot mark email as seen
I'm trying to set an email as read using the Python IMAP library. Just like in this example:
Python, IMAP and GMail. Mark messages as SEEN
I select a GMail account's "All email" folder then obtain ...
1
vote
1answer
54 views
Retrieving the largest email from inbox Python
How do i sort and retrieve the largest email from my Gmail Inbox without having to send multiple IMAP requests to the email servers? for example, if my gmail account has 10,000 messages, the code ...
0
votes
0answers
34 views
How to link back to gmail from imaplib
I'm using python's imaplib to connect to gmail, retrieving some stuff, to make a kind of minimal mail client. What I need now is to know how to link back to gmail with data I received from there:
For ...
0
votes
0answers
122 views
Using IMAP to read Yahoo Email, but can't identify spam folder
I'm using python imaplib library to read emails, I have no problem reading inbox,sent etc. But not sure why I can't find the "SPAM" folder.
Here is folder structure that I pulled:
['(\\HasNoChildren) ...
1
vote
1answer
74 views
Gmail IMAP is not returning uids
I am connecting to my gmail account via IMAP to sync some of my emails and parse them. Sometimes I need to download again some emails because I did some kind of fix and now gmail is not returning me ...
1
vote
1answer
240 views
Extract information from Gmail with Python
I have come through solutions to extract useful information from selected received emails in Gmail mailbox.
Aim in this example is to fetch all mails sent from a newsletter providing monthly prices ...
0
votes
2answers
77 views
PHP requests processing in serial not parallel
I wrote a page (cron.php) that uses the imap library to connect to a mailbox, parse messages, and store them in a database, then echos the results in json. I have a few dozen mailboxes that I need to ...
1
vote
1answer
89 views
Python multiprocessing imaplib throws error
I have the following piece of code in which I am trying to fetch mails from different directories of a mailbox concurrently. However, it is showing the folloing problem. Have attached the shortened ...
3
votes
1answer
715 views
Python imaplib fetch body emails gmail
I read this already and wrote this script to fetch body for emails in some mail box which title begins with '$' and is sent by some sender.
import email, getpass, imaplib, os
detach_dir = ...
0
votes
0answers
61 views
How to use search imaplib
I need to download only emails from the IMAP server which are older than a certain Linux timestamp. The Linux time stamp has to be to the second. This gets updated as per the server time.
Example :
...
0
votes
2answers
467 views
Python and imaplib: Obtain attachment names or body without downloading full email
I have an email client in Django. Currently supporting GMail accounts using imaplib.
My problem is: I want to obtain the attachment names without having to download the full email. Currently, in ...
0
votes
0answers
37 views
Python IMAPLIB2 Exception Abort Handling
I have a script in python and ruby that uses IMAPLIB2 but always throws the abort error. I am not sure how to catch the exception. Here is the code. Any help would be really appreciated!
mail = ...
0
votes
4answers
155 views
Python if a var doesn't exist then
I'm developing some IMAP checker. Now the inbox count is prints a message in the following layout: ['number'].
Now that that number is split to the number in var num. See the following code:
for num ...
1
vote
2answers
143 views
GMail with Python and imaplib - searching in “All mail”
I'm trying to build an email client using Python and imaplib.
Currently my problem is: I want to do searches on the folder that contains all the email. Usually called "[GMail]/All email".
My problem ...
7
votes
3answers
353 views
Get the Gmail attachment filename without downloading it
I'm trying to get all the messages from a Gmail account that may contain some large attachments (about 30MB). I just need the names, not the whole files. I found a piece of code to get a message and ...
0
votes
1answer
92 views
Unique Email Identifiers with IMAP
I am creating an GMail email interface in Django/Python. I want to create a skeleton of all emails, containing subject and date, a kind of overview-level index, so that even if an email is deleted, I ...
0
votes
2answers
176 views
Python GMail IMAP doesn't return UIDs
I am using imaplib with Python to fetch the contents of my inbox or GMail labels.
My problem is: imaplib returns the UIDs when I'm querying the inbox, but not my email labels.
If I query the inbox, ...
0
votes
2answers
70 views
python imaplib unexpected response 220
I have the following line of code using imaplib
M = imaplib.IMAP4('smtp.gmail.com', 587)
I get the following error from imaplib:
abort: unexpected response: '220 mx.google.com ESMTP ...
2
votes
0answers
81 views
Retrieve Email Body Text Using imaplib
I'm trying to ensure that I retrieve all of the body text (no matter what format the email is in) from a certain email address. The connection details are omitted in this example (imaplib_connect) ...
0
votes
0answers
95 views
Parse HTML, Tab and Space Email Body Characters
I'm connecting to the an IMAP server and I want to fetch the body of all emails from an accounts inbox that are from "testguy@gmail.com" and then write the contents of the body to a file. I'm able to ...
1
vote
0answers
128 views
High performance IMAP library for .NET [closed]
I'm looking for a commercial library to use in my C# app for retrieving messages for IMAP servers. The library would be deployed on a server that handles multiple retrievals from different inboxes. As ...
1
vote
2answers
271 views
IMAPClient and BODY[HEADER.FIELDS (FROM)] field
I'm really starting to get the hang of IMAPClient. The code: 'BODY[HEADER.FIELDS (FROM)]' returns
From: First Last <first.last@domain.com>
I'd really just like it to return the email address ...
0
votes
1answer
108 views
search for string in msg python
I can print each email. What I want to do though is search each email for a string and return true of false if it has the string. How can I parase msg to do this?
conn.select(readonly=1) # Select ...
0
votes
2answers
185 views
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'
...
1
vote
1answer
975 views
Get only NEW Emails imaplib and python
This is a smaller portion of a bigger project. I need to only get unread emails and a parse their headers. How can I modify the following script to only get unread emails?
conn = ...
4
votes
2answers
122 views
Obtain text as HTML, imaplib and Django
I'm obtaining emails using imaplib in Python/Django.
My goal is to both read plain text and HTML emails.
I'm using:
mail.select('inbox', readonly=True)
result, data = mail.uid('fetch', email_uid, ...
2
votes
1answer
188 views
Search utf-8 string with GMAIL imap X-GM-RAW
Seems
How to make GMAIL SEARCH with non-ascii strings
Some comment from Google Groups, but can't grasp how to create it with Python and imaplib:
Send non-ASCII data using literals:
. search ...
0
votes
1answer
194 views
Copying mail from Imap to Gmail and keeping org date
Iam working on a script to move mails from a imap server to gmail via imap.
I got it to copy the mails over and create the labels, but it sets the date to be now instead of to original date, when i ...
1
vote
1answer
247 views
using imaplib to access corporate gmail
I have the following code, it works for my own personal email.
import getpass, imaplib
import email
import libgmail
import re
#M=imaplib.IMAP4()
M=imaplib.IMAP4_SSL('imap.gmail.com',993)
...
1
vote
3answers
255 views
Increasing speed of IMAP bulk message deletion in python
The goal is to remove bunch of email messages using imaplib. Email folder receives approximately 300k new messages a month. Only messages that are older than 1 month should be deleted. If executing ...
0
votes
2answers
86 views
IMAP in Corporate Gmail
I am trying to download emails using imaplib with Python. I have tested the script using my own email account, but I am having trouble doing it for my corporate gmail (I don't know how the corporate ...
0
votes
1answer
114 views
How to deal with flooded unseen messages
I have written an email parsing mechanism in python.
It finds a new email and passes the data correctly. I am 99.999% certain that my code is functioning correctly, so there should be no issue ...
2
votes
1answer
2k views
Python read my outlook email mailbox and parse messages [duplicate]
Possible Duplicate:
Reading e-mails from Outlook with Python through MAPI
I am completely new to Python and have been given the task to write a program that connects to my Microsoft Outlook ...
0
votes
1answer
106 views
IMAP Search on Header not working
I am building library for IMAP my search command works file for the Inbox folder it returns me a number which i can use to fetch the mail. However when i try to search on Sent Items it doesnot work it ...
0
votes
0answers
305 views
Parse error passing search criteria to imaplib
This may be a newbie question, but I can't figure out why I can't successfully pass parameterized search criteria to imaplib.
Setup code is:
M = imaplib.IMAP4_SSL("imap.gmail.com", 993)
...