The gmail-imap tag has no wiki summary.
5
votes
1answer
231 views
IMAP batch fetch text part of messages
I'd like to download the text (that is mime type text/plain, text/html text/richtext) from UID x to UID y.
I have the UID's (and not mailbox IDs).
How can I do something like
FETCH 412444:412500 ...
4
votes
1answer
198 views
PHP: Gmail's messages contain invalid HTML and random jargon
I'm creating an email-based CMS with PHP, and I'm required to use Gmail as the email service. The script is insanely simple for now, and the only problem I'm having is dealing with Gmail's email ...
4
votes
1answer
751 views
Reading gmail from c#
Does anyone know a way to read email messages from a gmail account in C#? I've looked for hours and found a few options that all seemed to have been broken by Google's change in protocol however long ...
3
votes
2answers
126 views
How would I move a message from Gmail Inbox to a label?
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') ...
3
votes
2answers
516 views
Using IMAP () in PHP to get recent unread emails count
I am trying to get no. of recent unread mails from a gmail account.For this I have installed IMAP in my Ubuntu system and tried some PHP iMAP functions.
Here are what i have tried till now.
/* ...
3
votes
2answers
265 views
Link to individual mails in gmail
I want to download all emails in a gmail account and also want to get the unique url which will open the exact mail in gmail, off course with authentication. I tried using javax.mail imap library but ...
3
votes
1answer
883 views
Gmail IMAP OAuth for desktop clients
Recently Google announced that they are supporting OAUth for Gmail IMAP/SMTP. I browsed through their multiple documentations, but still I am confused about if they support OAuth for installed ...
2
votes
1answer
82 views
How to forward email using Python
First, let me say, I already know that this was asked at Forwarding an email with python smtplib already.
The reason that I am posting something so closely related to that question is that I have ...
2
votes
2answers
607 views
IMAP “Invalid Credentials” via GMail XOAUTH
I'm trying to get into the IMAP server with OAuth, using the PHP Sample Code provided by Google which uses the Zend Imap class but I am failing to authenticate. Zend is giving me the error:
...
2
votes
1answer
293 views
Gmail IMAP, Searching for optimal method for X most recently active Gmail threads
I am looking for the optimal way to acquire a list of the top X most recently active Gmail threads.
Background:
I am using Java accessing IMAP with OAuth in a Google Apps for Education domain. A ...
2
votes
2answers
182 views
Sending an email in Rails
I'm trying to send an email using Ruby on Rails but I get the error:
Net::SMTPAuthenticationError in UsersController#create
535-5.7.1 Username and Password not accepted.
But the username ...
2
votes
1answer
60 views
searching all Gmail accounts within the company
Our company uses Google Apps, and I want to find a way to search the All Mail folders of all employees simultaneously: the goal is to return a complete list of emails our company has had to/from a ...
2
votes
1answer
179 views
Problem with imap_fetchstructure(): Bad message number
I'm working on IMAP reading email from mine google account, and can't find a way to check is email with exact number exists or why this errors happens.
Here is my code, so basically I make an ...
2
votes
1answer
106 views
Dealing with IMAP mailbox name case sensitivty
I have a python script using imaplib that connects to a gmail account and sorts emails based on '+' tags found in the email address. For example: emails sent to myaccount+root.foo.bar@gmail.com get ...
2
votes
1answer
146 views
Python: How do I save something that printed in a terminal as a variable to compare later?
import imaplib
import pprint
IMAP_SERVER='imap.gmail.com'
IMAP_PORT=993
M = imaplib.IMAP4_SSL(IMAP_SERVER, IMAP_PORT)
rc, resp = M.login('user@gmail.com', 'password')
print rc, resp
M.select()
for ...
2
votes
3answers
1k views
can we send email from local host using gmail account? [closed]
Can we send email form local host using gmail smtp ? I am trying and getting error The operation has timed out.
I am trying to send email from local host from last 3 days. It works fine if I send ...
2
votes
2answers
412 views
Gmail IMAP : Any way to find all Labels (folders) a particular message is in?
So, Gmail's IMAP is a bit 'weird'. They use IMAP folders to represent Labels. I believe typically that an email in IMAP can only belong to one 'Folder', however with Gmail, an email message can ...
2
votes
1answer
440 views
Javamail IMAP search by SUBJECT fails
I'm using javamail for imap search by subject on Gmail. I use the subjectTerm class to create a searchTerm object and pass to the search function. Search works fine for subject strings which are pure ...
2
votes
1answer
170 views
How to use thread search method in imaplib?
I want to create a gmail client with the ability to view emails as conversations (threads). In imaplib, there is a method:
IMAP4.thread(threading_algorithm, charset, search_criterion[, ...])
I think ...
2
votes
0answers
615 views
IMAP search by subject fails on gmail
I am using the php imap libaray's imap_search() function to search mails in gmail inbox via subject string.
imap_seach($mbox, 'ALL SUBJECT "<search string>"');
This search returns perfectly ...
2
votes
1answer
921 views
How to manage Gmail labels in mutt
Is there a way to manage Gmail lables(Virtual folders) with mutt??
2
votes
1answer
500 views
Accessing attachments using gmail contextual gadgets
I'd like to save an email, along with attachments, from Gmail (Google Apps) to another database for CRM-like functionality. However, according to the docs, "Extractors can not read email attachments". ...
1
vote
0answers
55 views
Advanced message filter rules in Mozilla Thunderbird
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 filter ...
1
vote
1answer
74 views
Mule ESB: Retrieving email messages from Gmail using IMAP connector
I am new to Mule and im trying to create a Mule configuration that pulls sent emails from a GMail account via imap and pushes them to a php script that processes and stores them in a custom CRM that ...
1
vote
2answers
81 views
IMAP append message
I'm looking for an IMAP4 library for .NET (preferably working on Mono out of the box) which can Create new messages in mailbox, returns the ID of this new message allowing later to delete the message ...
1
vote
2answers
93 views
PHP IMAP - Do emails have to have a messageid?
I'm retrieving emails from Gmail using PHP and IMAP; however, some emails don't have a messageid. Aren't all messages supposed to have a messageid?
I need a unique id for reference so i'm not sure ...
1
vote
2answers
76 views
Reply to email - dealing with the HTML
I have a PHP script that checks Gmail for new mail, then depending on the conditions of the email, will reply to the email with some information.
My question is when replying to an HTML email, what ...
1
vote
1answer
145 views
Gmail Imap - Can't connect when I am in office network
I have been working at home on Gmail-Imap-Api on the weekend. It was working Properly But when i returned to office and am trying here it throws exception.
Properties props = ...
1
vote
0answers
48 views
Why does python.exe crash when I run this Selenium/WebDriver code using IE as the driver?
I've got IE 9 on Windows 7 and Python 2.7. This code runs perfectly when I use Firefox for the driver, but with IE it crashes after a few seconds. I wonder if it's hitting a high CPU state during the ...
1
vote
0answers
33 views
Message order in Gmail boxes
I wrote a simple script in python using imaplib to download gmail messages from a given box (or a label which behaves like a box). Since some boxes contain very large number of messages, my script ...
1
vote
1answer
270 views
How to programatically get ALL (read and unread) messages from gmail, read status, etc?
I have a customer service web app requirement, which requires that I work pull & integrate data from Gmail, eBay, Amazon, and Paypal. My solution is going to be developed in ASP.Net 4 with C#.
...
1
vote
1answer
183 views
Creating a Draft message in Gmail using the imaplib in Python
I want to write a python module that sends data to a draft message in a G-mail account. I have written a script about two weeks ago that worked perfectly using imaplib. A simplified example of my ...
1
vote
1answer
193 views
IMapX Gmail SEARCH operation throws exception “Bad or not correct search query”
I have used the ImapX library to SEARCH Gmail using queries like :
ImapX.MessageCollection msg= c.Folders["INBOX"].Search("SUBJECT <abc>", false);
I get the error above when I try and ...
1
vote
1answer
126 views
Is it worthwhile using IMAP COMPRESS (DEFLATE)?
Gmail supports the IMAP COMPRESS Extension (RFC4978), specifically the DEFLATE algorithm (RFC1951) aka zlib/gzip.
I'm not normally a Python programmer but I threw a quick test script together using ...
1
vote
1answer
421 views
HTML formatted email not showing up at all in Gmail but is in other mail clients
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 vary ...
1
vote
2answers
322 views
How to get Gmail unread count
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 ...
1
vote
1answer
248 views
IMAP Fetch Encoding
I'm trying to fetch some email info from gmail using imap like this
"(BODY.PEEK[HEADER.FIELDS (subject from date)] X-GM-MSGID X-GM-LABELS X-GM-THRID)"
The problem is that it doesn't work well with ...
1
vote
1answer
258 views
GMail IMAP - How to get conversations (threads) list?
I am trying create similar view like in GMail. I know that GMail IMAP
have extension X-GM-THRID which I can use in FETCH command, but this
return me this same numbers of items and I must group them ...
1
vote
1answer
494 views
Python IMAP search using a subject encoded with iso-8859-1
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 finding ...
1
vote
1answer
250 views
Python: How do I check email with a loop without there being a message in the inbox?
import serial
import imaplib
from time import sleep
IMAP_SERVER='imap.gmail.com'
IMAP_PORT=993
ser= serial.Serial ('/dev/ttyACM0',9600)
M = imaplib.IMAP4_SSL(IMAP_SERVER, IMAP_PORT)
rc, resp = ...
1
vote
0answers
250 views
Filter emails by date using hours and minutes
I'm trying to get all mail that I receive after some date. But folder.search( returns all of them. Even if I specify ComparisonTerm.EQ
Folder folder = getInboxFolder();
ReceivedDateTerm dateTerm = ...
1
vote
0answers
207 views
Upload MSN messenger chat log to gmail
I am looking for a way to store all my msn messenger chat log (the xml file) to my gmail account.
Just like the gmail chat logs in the "Chats" folder.
Is there any program or web service provide ...
1
vote
1answer
553 views
Javamail IMAP connection with Gmail drops after a random duration
I'm using Javamail to authenticate into gmail imap server and fetch messages headers for complete mailbox one at a time and index locally. For inboxes which have few messages, this works fine. For ...
1
vote
2answers
338 views
UTF-8 Subject line appears as question marks in Gmail
I am trying to send an email with Chinese characters in the subject line from my program to a gmail account, but the subject line appears as ????. This is how the subject line is encoded:
...
1
vote
1answer
2k views
How can I configure Drupal 6 to work with gmail?
How can I configure Drupal 6 to work with gmail IMAP?
These are the errors I get when trying to send email from Drupal.
warning: mail() [function.mail]: SMTP server response: 530 5.7.0 Must issue a ...
0
votes
1answer
23 views
Too many parameters on Imap::new
I am trying the following, but Imap::new is complaining about too many parameters
require 'rubygems'
require 'highline/import'
require 'net/imap'
puts "username"
username = gets
password = ...
0
votes
0answers
15 views
How to retrieve answered messages using Gmail IMAP?
As per docs, Gmail does not support the Answered flag on its IMAP implementation. Is there any workaround to determine if a message has been replied or not?
0
votes
0answers
7 views
IMAPStore vs IMAPFolder IDLE command
Is there a difference between calling idle() on IMAPStore vs IMAPFolder in Java?
0
votes
1answer
42 views
reading from multiple imap.gmail.com from the same fetchmail client
For my portfolio software I have been using fetchmail to read from a Google email account over IMAP and life has been great. Thanks to the miracle of idle connection supported by imap3, my triggers ...
0
votes
0answers
15 views
2-step verification in xmpp protocol
Recently I turned my gmail account into 2-step verification ON.Now when I try to connect my gmail account through any jabber(xmpp supported) clients.. it wont work.I know gmail is based on xmpp ...