Internet message application protocol (commonly known as IMAP) is one of the two most prevalent Internet standard protocols for e-mail retrieval, the other being the Post Office Protocol (POP).
0
votes
1answer
9 views
How mark gmail message as unread (unseen) MailSystem.NET
I searched a lot how to read an email from gmail and then mark it as unread (unseen), now that I found I wanted to share with everyone.
Procurei muito como ler um e-mail do gmail e marca-lo como não ...
0
votes
0answers
21 views
Need best Mysql Query to list mails like Gmail Conversation
Currently I am doing a small IMAP client in php-mysql for an application.
I want to display mailboxes just like gmail's Conversation style.
I have stored headers of all mail in a DB. So later on I ...
1
vote
1answer
15 views
PHP imap_mail_move: what is the correct ID from imap_header to use?
So here is an imap_header dump...
$header = imap_header($mbox,$cms->page2);
stdClass Object (
[date] => Tue, 11 Jun 2013 19:12:28 -0700
[Date] => Tue, 11 Jun 2013 19:12:28 -0700
...
-1
votes
0answers
12 views
PHP Imap_listscan always returning false
I'm building a class to interact with an imap mailbox, with the help of the php imap functions. I have a function listMailboxes(), which is basically a call to imap_getmailboxes to list all the ...
1
vote
0answers
44 views
Differentiating between sent and received mail
I am using the below code to can through my inbox:
$imap = imap_open("{imap.gmail.com:993/ssl}[Gmail]/ALL Mail", $yourEmail, $yourEmailPassword);
The thing is how to segregate between the sent ...
-1
votes
0answers
25 views
PHP: Use imap to check if an email account exists/isset
I'm browsing through PHP's IMAP functions and I'm not seeing anything that would allow me to check if an email address already exists or not for a specific account. I'm essentially trying to do an if ...
3
votes
0answers
41 views
How to access email attachments using gmail Contextual Gadget
Is there any way to get mail attachments using gmail Contextual Gadget. With extractors it is not possible to read mail attachments.
-1
votes
2answers
15 views
How Do I Get The Specific Part For Each Email Using imap_fetchstructure()
I have a script where I am fetching an email body using imap_fetchbody( $inbox, $email_number, 1.1 );
However this is causing errors and I believe it is due to the last attribute (the part number) ...
1
vote
1answer
24 views
imap_fetchbody() randomly adding new lines
I'm retrieving emails using imap_fetchbody() which is working perfectly except that it is adding a strange amount of <br /> tags once I use the nl2br() function.
When I extract the body using ...
0
votes
0answers
18 views
Integeration between mail servers with rails app to read/display emails
I have gone through the IMAP (http://www.railstips.org/blog/archives/2008/10/27/using-gmail-with-imap-to-receive-email-in-rails/) and the "mail" rubygem.
But still not able to cover the following ...
0
votes
1answer
24 views
Embedded Images Causing Problems With imap_fetchbody()
I have an email system that retrieves emails using PHP and then puts them in the database.
This works fine, however one issue is when an email has embedded images (not attachments) placed anywhere in ...
0
votes
0answers
22 views
imap_list failing without error
I'm trying to list the folders contained in a mailbox, but the imap_list function is failing without providing me any error (imap_last_error returning blank). I'm not trying to do anything fancy here, ...
2
votes
2answers
30 views
HIGHESTMODSEQ response from gmail
I have a python script that uses a twisted imap4.IMAP4Client to check for new emails in a gmail account. It does so every ~30 seconds. It has been running fine for months.
Starting June 11, I began ...
-1
votes
0answers
20 views
Overcoming gmail's country lock in imap client
I have created an online imap library and a very basic web client for logging into gmail account.
Now according to Google, my location that i use gmail from is Pakistan but my code is hosted on ...
0
votes
1answer
12 views
Extract link from IMAP message
i need to extract an URL from an IMAP message, so far i have been able to extract the message in plain text but not the link, i could really use some help here. Here's what i got so far
$section = ...
4
votes
1answer
39 views
Getting email body without fetching attachments using ruby mail gem
I am trying to fetch the body of gmail using IMAP and ruby mail gem. It works perfectly while I fetch RFC822 field as described in another stack overflow answer.. Fiedl has described the approach very ...
0
votes
3answers
26 views
How to receive email using linux, bash and imaps?
I have some email server which receives from clients via smtps (port 465, ssl/tls, normal passwort) and send to clients via imaps (port 993, ssl/tls, normal password).
What I need are bash commandos ...
-3
votes
0answers
18 views
Search a Horde_Imap_Client example
i search a Horde_Imap_Client Horde_Imap_Client example that shows me the base code how to setup a mapi connection and get and send mails.
I have searched now some time but don´t find anything fitting ...
1
vote
1answer
25 views
OAuth2 Authentication to Gmail throws SunCertPathBuilderException/SSLHandshakeException
In my app i authenticate to Gmail using the OAuth2Authenticator from this Google example to receive Emails via Imap.
The code works perfect, but the last days some users reported an error that occurs ...
-4
votes
0answers
26 views
How i can get all mailboxs of an email account? [closed]
I want all Mailboxs like inbox, sent mail.. from email account..
I m using IMAP to read all mails..
using AE.NET.Mail.dll
can anyone have answer?
Edit:
For Gmail, to select "sent mail" mailbox I ...
1
vote
1answer
65 views
Generating SASL XOAUTH2 client response for Gmail IMAP access using Ruby
I'm trying to access my Gmail emails over IMAP using XOAUTH2 in Ruby.
I've successfully generated an access token (and refresh token) by authenticating using OAuth 2.0 with the oauth2 gem. I'm going ...
1
vote
2answers
21 views
IMAP - editing a draft or existing message?
For those of you familiar with IMAP - If I retrieve a draft message (or any message for that matter), and I wish to update it / edit it, what commands should I use?
The only command i've come across ...
0
votes
1answer
25 views
Different imap mailboxes uid trouble
I'm working about an email manager that can manage more than one mailboxes.
This is my scenario: I get the mails by a mailbox and I store their properties in a database, uid included. The mailbox can ...
-1
votes
1answer
21 views
Using IMAP, how do I get the latest messages?
I am new to the IMAP protocol and where wondering how I can pull the latest N messages?
I have started with things like:
imap.search([1..10]).each do |message_id|
...
end
And even fetching ...
-4
votes
1answer
19 views
What is the concept of UID in Imap Message [closed]
I am using Imap client to access my mail messages But I want to know the concept of UID in ImapMessage Thanks
0
votes
2answers
42 views
How to Receive first 100 mail Messages in using Imap Client In C#
I have an account on Gmail with 12,000 mail messages in inbox mailbox folder.
My problem is that I want to receive only top 100 mail messages, I tried a lot but I failed.
Here's the code
ImapClient ...
0
votes
0answers
30 views
How to use expunge in iOS?
For my project, I am using MailCore, in which the method expunge is located. For the life of me, I cannot figure out how to use to delete a message. If someone could please help me, that would be ...
-2
votes
0answers
29 views
Retrieve emails from email accounts through POP3/IMAP [closed]
i m developing an app in iphone and for that i m finding any useful source/library by using that i can retrieve all emails of user's account through POP3/IMAP server connection. I have found one ...
0
votes
1answer
43 views
How to delete the Mail Programmatically in IMAP or POP using C#
This is my code to delete the mail. But, it doest working,
public object Delete(int index)
{
StreamWriter.WriteLine("$ DELE {0}"+index);
StreamWriter.Flush();
...
0
votes
1answer
31 views
IMAP-Can not view contents in outlook
i have implemented an IMAP client (using winsock and openssl) that can fetch emails from my GMail account and save each individual email as .eml file. However, i was not able to view the content using ...
0
votes
1answer
25 views
How to send IMAP - command using java and port 143
I'm writing imap-mail checker.
I have something like this :
tcpSocket = new Socket();
tcpSocket.connect(new InetSocketAddress(Config.HOST, 143));
...
// greeting message from server
String answer = ...
2
votes
1answer
28 views
PHP IMAP get uid after using imap append to add sent mail to imap mailbox
Id like to get the message uid for the message i appended. Here is the code, which is untested and am sure is wrong:
$imapStream = imap_open($imapPath,$imapUser,$imapPass);
...
0
votes
0answers
56 views
imap_mail_compose creates noname attachments in android email
I'm writing a php application that reads email messages from one mail account and forwards certain messages to another mail account. I use imap_mail_compose() to create the message that will be ...
1
vote
1answer
84 views
IMAP - How to search for all messages in a conversation thread?
I'm working on an IMAP client, and would like to be able to find a list of all messages that are referenced in a conversation thread.
I know that the "References" header includes a list of messages ...
0
votes
2answers
45 views
How to extract TNEF winmail.dat using a PHP script?
I am developing a functionality that will read all emails from a mailbox and will process the attachment files.
When any mail is sent from Outlook, its attachment is saved as winmail.dat. [Please ...
0
votes
1answer
23 views
Javamail Android - MessageCountListener.messagesAdded doesn't provide message flags nor messageID
I'm developing Android IMAP client based on JavaMail-Android library. I use fetch method of IMAPFolder by providing MessageCountListener. When there is a new message on a folder, the ...
1
vote
1answer
21 views
Speeding up IMAP fetching
Currently I'm using an IMAP library which will fetch e-mails by a queue (list of UID's to fetch in a db table). To speed this process up I could let several instances fetch several batches. Is this a ...
2
votes
1answer
56 views
How can i tell the client to wait until it received all the data?
this is my first post. i am currently taking a networking class and i am required to write a client program that can download all emails from imap.gmail.com:993 to text files. i am required to write ...
-1
votes
0answers
140 views
Roundcube “Connection to IMAP Server Failed” [closed]
I'm running an Ubuntu server with Postfix and Dovecot installed, and trying to use Roundcube as a front end email client. Anytime I try to login with Roundcube I get the message
"Connection to ...
0
votes
1answer
27 views
How to create RFC822 email message with comment inside message?
I'm uploading messages into my IMAP mail server via IMAP store operation. However, I would like to add "comments" to these messages so that when I download these emails again I know the they are ...
-2
votes
0answers
23 views
Why mutt always mark my email read when i oepn the mailbox [closed]
As you know, I have several folders in a gmail, I switch into a folder and I didn't read any email, then I change back to my inbox, thenm, all the new mail in that folder is no longer with a N flag.
...
-1
votes
0answers
18 views
Full buffer when IMAP telnet to Yahoo [closed]
I've a problem when connect to Yahoo's imap through telnet command.
Every thing is ok but with a large mail (approx > 8MB). When you use "Fetch [uid] BODY.PEEK[]" command, uid is your mail's uid, ...
0
votes
2answers
39 views
PHP IMAP sync a folder
I am building the PHP application to sync IMAP mailbox with local copy.
I need to find a way to load only messages from IMAP folders that i didn't load yet.
PHP IMAP library has the function ...
0
votes
2answers
47 views
Get the text of multipart Gmail messages
I am trying to fetch emails from Gmail by PHP using imap. I'm getting emails perfectly but my problem is that some of the messages are in a multipart format, and I would like to remove the multipart ...
0
votes
2answers
65 views
Email::MIME can't parse message from Gmail
So I'm using PERL and Email::MIME to get an email from gmail. Here is my code:
use Net::IMAP::Simple::Gmail;
use Email::Mime;
# Creat the object that will read the emails
$server = ...
-7
votes
0answers
26 views
PHP IMAP - Append new text on email which is send [closed]
Hi i like to ask if is possible to append some text in email body after the mail is send. I have list all my messages in inbox with php, but I like to ask is it possible to append some text after ...
0
votes
1answer
41 views
Cannot Decode Encoding - Python and imaplib
I'm obtaining emails from IMAP using Python and imaplib. In this specific case I'm having a problem with the To: addresses.
I extract the encoded To: field, separate the addresses and then try to ...
0
votes
0answers
21 views
No disposition in php imap email structure to indicate an attachement
I'm having an issue getting attachements from emails using the PHP IMAP functions. In theory the attachments should be identifiable with [disposition] => ATTACHMENT or similar. But I am simply not ...
0
votes
1answer
122 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 ...
0
votes
0answers
33 views
comparison of PHP IMAP Librarys (php imap library vs horde imap vs roundcube imap vs others)
I am looking for a comparison of available PHP IMAP librarys, for example the php imap library and the horde imap library.
Interesting points would probably be
Features
Ease of use
RFC compliancy
...



