0
votes
1answer
23 views
IMAP UID SEARCH and UID FETCH command issue
I issue a UID SEARCH command to get the UIDS of emails from a certain date and it returns me the list of UIDS. No problem, fast and works great.
Then I take the result of the UIDS and issue this ...
-1
votes
0answers
18 views
include gmail into my codeigniter website
i have a question that i couldnt find any answer for it @ google.
is it possible to integrate Gmail into any website ?
i have my Codeigniter app already up and running, but i was considering ...
0
votes
1answer
38 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 ...
0
votes
1answer
27 views
IMAP + Ruby: How to search emails with multiple parameters with optional conditioning
I have code using which I am able to fetch emails from authenticated gmail account. At the moment there is a basic filter applied on it. But my requirement needs me to apply multiple filters like:
...
0
votes
1answer
40 views
Gmail IMAP search by UID range seems to skip the first message
I have a mailbox on gmail that has the following UIDs if I do a search 'ALL'.
[ 2, 5, 6, 51 ]
Oddly, if I do a search for '3:*', I only get [6, 51] back.
==> A6 UID SEARCH 3:*
<== '* SEARCH ...
0
votes
1answer
90 views
How to access gmail inbox using GAE
We are trying to access gmail inbox from our application in Java. We can read inbox, message, add label, but we are in progress to achieve all the desired functionality.
Our conclusions:
-javax.mail ...
0
votes
0answers
33 views
Connecting to IMAP using XOAuth2 on Android
I'm trying to connect to GMail IMAP using OAuth2 under android however I'm struggling a bit with how to implement it. I've looked at SMSBackup+ and K9-Mail while trying to figure out how to do it but ...
0
votes
1answer
71 views
Php accessing the email inbox for email address
I needed to get the Email address from which Im getting/receiving emails in my Inbox! what should I do for this, I at this time have the following code
<?php
$mbox = ...
0
votes
0answers
31 views
Doesn't return answered mails from gmail
I am trying to get the answered mails from Gmail. But it does not return anything.
SearchTerm repliedTerm = new FlagTerm(new Flags(Flag.ANSWERED), true);
Message repliedMessages[] = ...
0
votes
1answer
70 views
IMAP and Gmail Labels
I'm trying to figure out how to add GMail labels to my app. I'm using Mailcore that doesn't support it so I want to add them my self. I've researched a bit and found this:
a010 FETCH 1:4 ...
0
votes
0answers
37 views
imap_mail_move Several times in a Loop
Basically what I am trying to do is loop on some messages in a given mailbox, move them immediately to "In Progress" Folder and based on the results of the process move them again to a different ...
2
votes
1answer
130 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
123 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.
...
-2
votes
1answer
66 views
Check thousands of gmail mailboxes from ~1 server
I'm working on a Chrome extension that interacts both with the Gmail UI as well as Gmail's IMAP implementation.
The back-end of my app needs to monitor all incoming e-mails for each user and update ...
0
votes
1answer
62 views
Does Google support 2-Legged OAuth 2.0 for IMAP?
Does Google support 2-Legged OAuth 2.0 for IMAP? I know Google supports 3-legged OAuth 2.0 for IMAP, but I can't find any documentation for 2-Legged OAuth 2.0 for IMAP.
0
votes
1answer
64 views
Ruby + Imap: searching a subject with special characters doesn't work
When using Ruby + IMAP and trying to search a subject with special chars:
imap.uid_search(['SUBJECT', subject, 'NOT', 'SEEN'])
where subject is "Olá", it will fail with:
...
0
votes
0answers
30 views
How to display image from mail attachment using imap?
I am using imap for retrieving my inbox mail.
Now i want to display(not download) attached image to email.
0
votes
0answers
71 views
php - how to debug imap_search? imap_search returns nothing
I'm trying to parase some emails (gmail) using imap_search . So far I have this
$hostname = '{imap.gmail.com:993/imap/ssl}INBOX';
$imap = imap_open($hostname,$from_email_contact, $password) or ...
0
votes
2answers
214 views
Retrieve html using imap_fetchbody
i am using imap to retrieve emails. It works fine for fine for plain text. But problem getting html, I use imap_fetchbody($connections,$email_number,1.2); but it does not work. It returns null. But ...
0
votes
0answers
23 views
PHP hangs after an IMAP error [duplicate]
Possible Duplicate:
Workaround for PHP IMAP functions? Trying to work with incoming email on localhost using XAMPP
I am developing a small email client application based on PHP IMAP .
Now ...
0
votes
1answer
178 views
Avoid reading duplicate gmail emails with javamail through imap
I am using the javamail api to read my gmail box through imap for indexing all mail. I want to read all the folders other then the default folders. The below segment of code gives only the default ...
0
votes
1answer
78 views
Skip captcha resolution step while using Google IMAP server
I am developing a product which analyze Gmail account data and for that I need to allow user to log in to their Gmail account from my product. Now everything is going perfect no problem is there in ...
0
votes
1answer
77 views
How to scan ALL mail via Gmail API?
After I OAuth my google account I can connect to it via the IMAP protocol. Listing folders lists all the "labels" plus "[Gmail]" which isn't selectable.
Is there any way to list ALL mail and/or at ...
1
vote
1answer
160 views
Gmail IMAP OAuth2 returns error code 400
When trying to connect to the Google IMAP service using the XOAUTH2 mechanism (https://developers.google.com/google-apps/gmail/xoauth2_protocol), I sometimes receive the following error response:
...
1
vote
1answer
214 views
Gmail IMAP search by multiple senders
This search query seems valid to me :
UID SEARCH OR ( OR ( OR (FROM "def@gmail.com") (FROM "abc@gmail.com")) (FROM "ghi@gmail.com")) (FROM "jkl@gmail.com")
but I got "Could not parse command" error ...
1
vote
1answer
104 views
Access gmail star color from IMAP
Gmail has more stars than just the yellow colored star but they are not enabled by default.
http://support.google.com/mail/bin/answer.py?hl=en&answer=5904
Is it possible to search for all ...
0
votes
1answer
196 views
Getting exception in reading mails from Gmail IMAP server using Lumisoft
I have developed web application which is reading mails from Gmail IMAP server and I have used Lumisoft.Net for this.
With my account everything is working just fine but with my client's account it's ...
2
votes
1answer
129 views
Imap cyrillic mail
I use the mailsystem.NET library to put a message in my inbox. This is my code:
Imap4Client imap = new Imap4Client();
imap.ConnectSsl("imap.gmail.com", 993);
imap.Login(mylogin, mypassword);
Mailbox ...
0
votes
1answer
109 views
Imap search command to get the most recent message?
Is there a command to do this? I can get messages since a certain date, or RECENT or UNSEEN, but I can't find any way to just get the newest message and only the newest message.
1
vote
1answer
139 views
IMAP criteria with multiple ORs
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 ...
2
votes
1answer
247 views
IMAP “Invalid Credentials” error via GMail XOAUTH
I am using Gmail IMAP API with (deprecated) OAuth 1.0 in my app.
I have actually hundreds of users using the same app and majority of them are using the services without an issue. However there are ...
0
votes
1answer
393 views
AE.Net.Mail - IMAP UID tracking to get latest emails
I'm successfully using the AE.Net.Mail library to retrieve messages from an imap folder. I'm now trying to build out the portion that will let me check only for messages that I haven't already ...
2
votes
1answer
375 views
imaplib.select on big inbox: Too many arguments for command
I am trying to access to my emails in Gmail from a python script. The code I use is the following:
import imaplib
m = imaplib.IMAP4_SSL("imap.gmail.com")
m.login("username","password")
...
3
votes
1answer
272 views
Encoding of imap email parse
I having problems when I am trying to parse emails through PHP imap functions. I want to extract the text of the body but without HTML links (like mailto:xxxx) or issues with the encode. I think that ...
1
vote
2answers
581 views
Cannot connect to Gmail IMAP using XOAUTH on Android
I'm building an app that uses Gmail to backup some data. I use XOAUTH to connect to Gmail and got the token and secret. But i could not connect to Gmail's IMAP service. I followed the example at ...
1
vote
1answer
240 views
Search utf-8 string with Gmail X-GM-RAW IMAP command
Gmail's imap extension command X-GM-RAW allows me to perform a search if I use a ascii query string. If utf-8 chars are used in the query, the imap returns bad response.
...
1
vote
2answers
285 views
How to fetch the recent emails alone from GMail Mail Box using imap class in PHP?
I would like to fetch email messages from GMail using PHP's imap class.
I tried:
$val = date('Y-m-d H:i:s', 1337352811);
$recentMails = imap_search($this->imapInBox, 'SINCE $val', SE_UID);
This ...
0
votes
1answer
386 views
AE.Net.Mail Imap partial fetch
I'm using C# and the AE.Net.Mail library to pull files from Gmail. I'm having problems with large zip files.
The same problem is described and resolved here with Java: JavaMail BaseEncode64 Error
...
1
vote
1answer
569 views
Delete message from Gmail “All Mail” folder via IMAP
I am accessing Gmail All Mail folder via imap, using RFC 3501. I need to delete a message (Move to Trash or Permanently delete) from the folder. The following commands do not seem to work:
UID STORE ...
0
votes
3answers
167 views
How to access mail from gmail
I was using imap functions in my app to access gmail. Unforunately I have not been able to use imap any more. I am using php. Is there any alternative way like (api..) to access gmail.
I appreciate ...
0
votes
1answer
202 views
PHP Getting imap open to work
I just moved my app to the cloud hosting. I was using imap_open to access mails in my gmail account. It worked fine.
$hostname = '{imap.gmail.com:993/imap/ssl}INBOX';
$username = '...@gmail.com';
...
0
votes
1answer
325 views
Creating a Craigslist Anonymous Email Forwarding Program
The following program is intended to match incoming email aliases with those in the database, and forward the email to the right address, like Craigslist does.
I am now getting this error:
Error: ...
2
votes
1answer
647 views
How to fetch a GMail message using GMail URL Hash in Zend Framework
I am using Zend Framework for fetching GMail messages.
I have been able to authenticate and fetch all the messages using the zend framework using following code:
$storage = new ...
0
votes
2answers
2k views
Webmail client with Gmail IMAP support?
A client is requesting a web interface where he can accept or reject forms that are submitted to hime via email. I would have normally just used Gmail, but I don't need half of that functionality.
I ...
0
votes
1answer
300 views
imap: “Unable to create selectable TCP socket” when sending email from a C++ program
I am trying to send an email from a C++ program using imap library. I have a Google Apps and a Gmail account to which I am sending the email.
Whenever the program fails to send an email I am ...
4
votes
2answers
689 views
Faster reading of inbox in Java
I'd like to get a list of everyone who's ever been included on any message in my inbox. Right now I can use the javax mail API to connect via IMAP and download the messages:
Folder folder = ...
3
votes
1answer
828 views
How to Empty Gmail Trash with C#
I tried to access my Gmail mailbox with InterImap Library. It shows my messages there, but unable to delete messages. I also found a method "EmptyFolder()" but doesn't work.
All that worked for me is ...
2
votes
1answer
652 views
Gmail IMAP with PHP?
I'm trying to connect to my Gmail account in PHP via IMAP but I always get an error that says it can't open stream. I've tried lots of different things to fix this but I've had no luck. By the way, ...
0
votes
1answer
262 views
Cpanel IMAP Gmail problems?
I'm trying to connect to my gmail account via IMAP on a 000webhost domain but I doesn't seem to be working even though they say that they support IMAP
Here's my PHP code:
...
0
votes
1answer
249 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 = ...
