imap Questions
4
I'm building my own IMAP client using node-imap, and I'm testing it against accounts on office365.
Since it's under development, I tend to hammer on the IMAP server more that I would in production...
Irade asked 19/2, 2016 at 19:51
1
Solved
I've read the last days multiple documentations and tutorials, but didn't find the answer for my question, although it is in my opinion an obviously elementary question.
We use two servers and thre...
2
Solved
I am facing an authentication failure issue while trying to connect for both IMAP protocols using the Client Credential Grant flow for OAuth2.0.
Where, I have been following the steps suggested by ...
Diella asked 19/7, 2022 at 14:55
3
I want to write error handling for wen a user would input a wrong password to my script. I keep changing the code after the except statement, but I can't find out what the right code for the error ...
Munro asked 12/9, 2013 at 2:7
3
I am using gmail's IMAP API to search for mails.
I use the 'OR' criteria to search for different keywords. This works well if I go one level only, i.e. something like
'UID SEARCH OR (FROM "[emai...
Egest asked 9/10, 2012 at 23:8
1
Solved
I have a daemon that reads the inbox of an email address and performs actions to the emails. I'm using MailKit to connect to the exchange server with IMAP but Microsoft has shut down basic authenti...
Silvie asked 14/7, 2022 at 17:47
2
Solved
Up to this point I was happily connecting to my Gmail account with a method similar to this:
public async Task<IEnumerable<MimeMessage>> GetMessagesAsync()
{
using var imapClient = new...
4
I have multiple emails that contain an attachment. I would like to download the attachment for unread emails and with a specific subject line.
for example, I got an email that has a subject "EXAM...
Freightage asked 22/4, 2020 at 13:51
6
Solved
I'm looking to return the n (most likely 10) most recent emails from an email accounts inbox using IMAP.
So far I've cobbled together:
import imaplib
from email.parser import HeaderParser
M = im...
4
Solved
This is officially driving me nuts! I'm trying to work with a laravel package for imap functions and I've installed everything there but I get a missing class error for imap_open
I know this means...
6
Solved
I am using JavaMail API to connect to my personal account. I have list of folders (labels) in my Gmail account which I created + the default folders like Inbox, Drafts etc. How can I list all the a...
Radiosurgery asked 25/1, 2011 at 7:8
3
Solved
I'm trying to extract some content of some encoded emails with PHP but I can't.
With this:
$body = imap_body($imap_o, $email_n);
I get:
Pour = le r=E9cup=E9rer, il suffit de le t=E9l=E9charger, de...
2
Solved
I need to export an EML file from IMAP using Mailkit, however there are no methods to export the emails.
I didn't find any documentation either in MimeKit - Mailkit Documentation.
Is it possible to...
Landlady asked 23/10, 2015 at 16:25
2
Solved
From a different account, I sent myself an email with the subject Test de réception en local. Now using IMAP, I want to find that email searching by subject.
When doing a search for ALL and findi...
Ruy asked 12/4, 2011 at 19:10
5
I am using a php script to connect imap.gmail.com, I have a paid google app account. It was working but after some time I am getting following error
it says I have to login from browser but my Ce...
5
I found PHP code online to download attachments to a directory using IMAP from here. http://www.nerdydork.com/download-pop3imap-email-attachments-with-php.html
I modified it slightly changing
$s...
Prole asked 15/4, 2010 at 23:4
2
Solved
How can I login to a Gmail account and get number of messages in the INBOX mailbox with TIdIMAP4 component ?
Dilatation asked 28/11, 2012 at 11:49
3
I'm trying to retrive mails from Gmail and got following error:
Can't open mailbox {imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX: invalid remote specification
OpenSSL and IMAP are installed...
1
Solved
Iam using Python3.6 with IMAP4 module.Iam trying to copy emails from "Inbox" to "mytestfolder".
Iam getting "OK" as the response but the email itself is not being copi...
Wynne asked 4/5, 2021 at 11:3
7
How can I download multiple attachments from a single mail using imaplib?
Let's say I have an e-mail and that e-mail contains 4 attachments. How can I download all of those attachments? The code b...
Immaculate asked 3/6, 2011 at 10:15
4
This question is related to question Python IMAP search using a subject encoded with iso-8859-1, but the reply given there is not working for me.
I am doing the following IMAP search in python:
t...
5
I am making a program that needs to monitor a Gmail account for new messages, and in order to get them ASAP I am using JavaMail's idle feature. Here is a code snippet from the thread I am using to ...
Shirlshirlee asked 11/11, 2010 at 14:31
2
Solved
I found many dummy info about working with IMAP, but I didn't understand how to use it for my purposes. I found how I can get ALL messages from mailbox and ALL SEEN messages, but how should I work ...
4
Solved
I want to access the All folder in gmail via imap. in different language and in different name. What should i do?
The code of connection is:
$mail= imap_open('{imap.gmail.com:993/imap/ssl} //The ...
6
Solved
Notice: Unknown: Connection failed to mail.domain.com,143: Connection
timed out (errflg=2) in Unknown on line 0
imap_open("{mail.domain.com:143/novalidate-cert}INBOX", 'login', 'password')
T...
© 2022 - 2024 — McMap. All rights reserved.