imap Questions
5
Solved
Is there a high-level IMAP library for Python?
With high-level I mean, that I do not want a library where I can issue basic IMAP commands (like Python's own imaplib). What I want, is library that ...
3
Solved
I am using imaplib to work with imap in python, however it looks like it doesn't have means to parse the details of IMAP responses. For example, query like:
msgdata = connection.fetch(num, "(BODY...
4
Solved
I would like to know if any "official" function/library existed in Python for IMAP4 UTF-7 folder path encoding.
In the imapInstance.list() I get the following path IMAP UTF-7 encoded :
'(\\HasNoC...
3
I'm trying to write a script in php that requires imap functions.
I found the functions at here.
How do I download and install it in windows ?
Shielashield asked 3/3, 2010 at 11:42
3
Solved
The IMAP specification (RFC 2060, 5.1.3. Mailbox International Naming Convention) describes how to handle non-ASCII characters in folder names. It defines a modified UTF-7 encoding:
By conventio...
4
Solved
I have to implement an IMAP Client in Java.
Which advantages has using the Apache Commons Net library? Does it make the implementation robust and more flexible?
How do I have to handle return val...
Ayakoayala asked 25/4, 2013 at 7:19
4
Solved
I have a requirement to retrieve unread mails from Gmail. I am using Java Mail API. By default, this API retrieves mails from the oldest to newest. But I need to retrieve recent mails first. Is it ...
Forsyth asked 24/2, 2015 at 5:58
1
Solved
I am attempting to create a simple script to check my Gmail for emails with a certain title. When I run this program on Python 3.7.3 I receive this data: ('OK', [b'17']).
I need to access the body...
Privilege asked 11/4, 2019 at 15:20
4
Solved
I have PHP script that fetch messages from a mailbox. I use the imap_search function:
$emails = imap_search($mbox, 'UNSEEN');
Is there a way to limit the number of returned messages. Right now on ...
2
Here is a module retrieve_email.js which connects to my gmail account and download the UNSEEN emails after a date. The code is pretty much copied from the example of the [imap module]1.
const Ima...
1
Solved
Though I did most of it after searching a lot from lots of sites I am still not able to get the correct output which I wanted.
Code:
import imaplib
import smtplib
import email
mail=imaplib.IMAP4...
Trenna asked 25/12, 2018 at 10:28
3
Solved
A mail can contain different blocks like:
--0016e68deb06b58acf04897c624e
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: quoted-printable
content_1
...
--0016e68deb06b58acf048...
3
Solved
I am using PHP imap_search to fetch list of unseen messages since a given date like this:
imap_search($stream, 'UNSEEN SINCE 20-Sep-2015');
This is working fine. However, I am periodically every...
1
I am building a C# function to periodically fetch email messages from a local email server(hMailServer) and save to a database table.
var uid_list = await inbox.SearchAsync(SearchQuery.Sent...
2
Solved
I am working on a project where I need to read messages in an inbox on an imap server, process it and then delete the email from the inbox.
I can successufully get the email without any issue, th...
Fuchsin asked 26/10, 2018 at 18:17
2
Solved
How can one install imap for php in ubuntu for php7.1 preferably in the terminal.
There's some info on this on the php.net manual but it's a bit dated.
It talks about the c-client library and res...
Darya asked 19/7, 2017 at 16:49
3
I need to connect to a Microsoft Exchange Server through IMAPS JavaMail. First, I got the:
A1 NO AUTHENTICATE failed.
javax.mail.AuthenticationFailedException: AUTHENTICATE failed.
exception in...
Sophistic asked 19/11, 2013 at 8:41
1
If you're installing the IMAP extension in your PHP docker image, it's possible that you get some errors like:
configure: error: utf8_mime2text() has new signature, but
U8T_CANONICAL is m...
1
I am using Horde IMAP Client to fetch emails from an IMAP server. So far so good, I can authenticate, connect to a mailbox, download and parse emails.
The problem now is I need to parse emails wit...
Brooking asked 20/11, 2017 at 14:51
4
Solved
I need suggestions on how can I download attachments from my IMAP mails which have attachments and current date in subject line i.e. YYYYMMDD format and save the attachments to a local path.
I we...
Fucoid asked 16/3, 2010 at 10:29
4
Solved
I want to send IMAP commands via Mac OS X Terminal to server and get response. I can connect to the server using this line:
openssl s_client -connect imap.gmail.com:993
And I can successfully l...
3
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 rea...
Wilder asked 18/5, 2013 at 8:16
3
Solved
I have enabled OpenSSL and IMAP functions from my php.ini file and phpinfo() confirms it.
By using the code below i can connect to a Hotmail account but not to a Gmail account.(of course i change ...
4
Solved
I just ran into an issue with Python's imaplib and Gmail's authentication mechanism:
>>> import imaplib
>>> imap = imaplib.IMAP4_SSL('imap.gmail.com', 993)
>>> imap.auth...
1
Solved
I want to fetch and delete the top message (with UID=1) through IMAP using curl. I can do it in multiple commands, however when I send the delete command, I have no guarantee that the uid has not c...
© 2022 - 2024 — McMap. All rights reserved.