gmail-imap Questions

4

I'm able to sync my Gmail inbox, but the sent folder does not work. This is my .mbsyncrc IMAPStore martinstabenfeldt-remote Account martinstabenfeldt MaildirStore martinstabenfeldt-local Path ...
Canoodle asked 1/3, 2016 at 8:35

4

Solved

I am trying to view the contents of the emails received in my gmail inbox using imap but when I'm running the code, I am getting the following error. ERROR Error [ERR_STREAM_DESTROYED]: Cannot ca...
Elastic asked 7/1, 2020 at 17:46

2

I am developing a small webmail application, what i need to do is thread the emails like what Gmail does . I planned on achieving it by getting 'references' of a mail (using uid) and then showing ...
Plunge asked 14/1, 2014 at 21:40

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

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

6

Solved

I'm currently sending html formatted emails from PHP's mail() function and checking them simply to make sure they are showing up as HTML (formatting aside, I'm well aware that the formatting will v...
Costanzo asked 28/8, 2011 at 21:47

5

Solved

I'm seeking some help logging into a gmail account and downloading some emails using a python script. I'm trying to adapt an approach found here, but I'm running into a problem with step 1, accessi...
Interspace asked 20/8, 2014 at 19:52

1

Solved

I would like to read the complete incoming mail using imap. But imap is only notifying me the number of new mails I have received imap.on('mail', (number) => { console.log('got mails', number...
Harr asked 16/6, 2020 at 8:18

1

Solved

I'm trying to fetch SENT emails from gmail server using nodemailer through Imap. the solution below is not working and the result is the INBOX not SENT var imap = new Imap({ user: request.body....
Advocation asked 3/5, 2020 at 21:35

3

On Gmail adding labels works just fine: imap.store(item, '+X-GM-LABELS', label) imap.expunge() But: imap.store(item, '-X-GM-LABELS', label) imap.expunge() ...which is supposed to remove the l...
Corrincorrina asked 23/6, 2013 at 17:44

4

The filter mechanism of Thunderbird is nice for simple things. But I want to do something like (If message contains xy or sender is yz) and status is read, move to trash The problem is, one filte...
Bashuk asked 13/1, 2012 at 11:30

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

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

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

1

Solved

I went through many links but could not find complete solution anywhere to implement this.
Parrett asked 23/2, 2018 at 5:5

2

Solved

I have an iPad application that allows users to access their Gmail accounts using Mailcore2. I thought I had an understanding of the difference between Gmail's Thread Id, Message ID and UID until I...
Uncertain asked 13/1, 2014 at 16:23

5

Solved

I'm trying to move messages away from Inbox into Processed label with this code: $inbox = imap_open($host,$user,$pass) or die('Error: ' . imap_last_error()); if( $emails = imap_search($inbox,'ALL...
Polydeuces asked 26/11, 2011 at 11:10

3

Solved

Using this Git: $ git --version git version 2.5.1 With this configuration: $ git config --list | grep imap imap.folder=[Gmail]/Drafts imap.host=imaps://imap.gmail.com If I run this command: ...
Scent asked 9/10, 2015 at 1:27

4

Solved

You can access gmail either using the web interface, Google's Android client or using IMAP. As far as I can tell, the web interface and the Android app uses a completely different protocol than IMA...
Fritter asked 31/8, 2013 at 22:37

1

Gmail IMAP is also moved to Oauth2 authentication. So, we are using same console app for Gmail REST API and Gmail IMAP. My Question : For IMAP and REST API the quota allotted will be shared or each...
Cloistered asked 24/2, 2016 at 10:27

4

Solved

i got a code from here to download gmail inbox: http://davidwalsh.name/gmail-php-imap use these 2 hostnames $hostname = '{imap.gmail.com:993/imap/ssl}INBOX'; {imap.gmail.com:993/imap/ssl/novalida...
Mikamikado asked 24/12, 2010 at 9:15

2

I am trying to create a IMAP service on my website with help of php. It basically has few steps. The main part that I want is that i get a list of folders of gmail account, on the click of a parti...
Cartilage asked 2/9, 2015 at 4:48

1

this this code snniped: credential = GoogleWebAuthorizationBroker.AuthorizeAsync( GoogleClientSecrets.Load(stream).Secrets,//read from client secret.json file Scopes, "user", CancellationToke...
Comparative asked 2/12, 2015 at 15:32

4

Solved

I am using the following code to get the Unread emails count in Gmail. However, it is returning the error: can't connect: Too many login failures Is there anything I am missing here? (IMAP and...
Crisis asked 9/8, 2011 at 21:19

1

Solved

I'm writing a Node.js script that retrieves unread emails from my gmail inbox using node-imap, parses them with mailparser, and then does some work with the parsed emails. I'm running into a proble...
Disability asked 17/8, 2015 at 22:16

© 2022 - 2025 — McMap. All rights reserved.