Tagged Questions

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).

learn more… | top users | synonyms

29
votes
6answers
23k views

Accessing Imap in C#

Is there a built-in method to access an Imap server (with SSL) in C# or is there a good free library?
25
votes
9answers
33k views

Getting mail from GMail into Java application using IMAP

I want to access messages in GMail from a Java application using JavaMail and IMAP. Why am I getting a SocketTimeoutException? Here is my code: Properties props = System.getProperties(); ...
16
votes
3answers
3k views

How do I enable push-notification for IMAP (Gmail) using Python imaplib?

Is there a way to monitor a gmail account using imaplib without polling gmail each time I want to see if there is new mail. Or in other words, I just want the script to be notified of a new message so ...
13
votes
8answers
2k views

Find Gmail url-IDs via IMAP

One of my favourite features of Gmail is the ability to bookmark urls to certain messages like this: https://mail.google.com/mail/#all/124c8f386d41fd3a What I would like to do is write a script that ...
12
votes
8answers
20k views

using c# .net librarires to check for IMAP messages from gmail servers

Does anyone have any sample code in that makes use of the .Net framework that connects to googlemail servers via IMAP SSL to check for new emails? Thanks
10
votes
2answers
766 views

How do I use connect to Gmail's IMAP server using oauth in Rails3?

I found the gmail_xoauth gem, which does most of what I need, but I also need to generate the oauth tokens (consumer_key and consumer_secret) from inside Rails3. I am trying to integrate Gmail's ...
9
votes
3answers
5k views

IMAP in Emacs rmail?

Is there an Emacs package for using rmail with an imap server?
8
votes
4answers
6k views

Connecting to Gmail through IMAP with PHP - SSL context failed

I'm trying to connect to Gmail through IMAP with PHP running in Apache. This is on an Ubuntu 9.04 system. I've got some sort of PHP configuration issue that is keeping this from working. First, ...
8
votes
6answers
2k views

What's a good mail server for development use?

I'm doing some development which will involve reacting to emails, and I'd like to use a local IMAP mail server for this. I currently use Devnull SMTP server for testing of sending emails, but this ...
7
votes
2answers
81 views

Is there a toolkit that will provide a web-based API (xmlrpc, REST, whatever) to remote IMAP servers?

I'm working on a Google App Engine project that needs to access IMAP. Context.IO isn't quite powerful enough for my purposes, but I'd like something in the same spirit: I want to log into, access, and ...
7
votes
3answers
144 views

Where should I draw the line between lexer and parser?

I'm writing a lexer for the IMAP protocol for educational purposes and I'm stumped as to where I should draw the line between lexer and parser. Take this example of an IMAP server response: * FLAGS ...
7
votes
3answers
4k views

Python imaplib Gmail authenticate failure

I just ran into an issue with Python's imaplib and Gmail's authentication mechanism: >>> import imaplib >>> imap = imaplib.IMAP4_SSL('imap.gmail.com', 993) >>> ...
6
votes
5answers
598 views

base64 encoded string gets truncated through fgets call while parsing IMAP

I am parsing emails with Zend_Mail, and strangely some content gets truncated without an obvious reason and malforms the email parts. For example Content-Disposition: attachment; filename="file.sdv" ...
6
votes
4answers
227 views

Which Perl module would you recommend for sending and getting e-mail?

I am searching a Perl module to write (SMTP) and read (IMAP) e-mails. Which module out of the bunch would you suggest?
6
votes
3answers
2k views

Using python imaplib to “delete” an email from Gmail?

Can you delete emails with imaplib? If so how?
6
votes
1answer
687 views

How auto-subscribe on new IMAP folders in Gnus?

I need automatically subscribe on new IMAP folders created by my IMAP server in Gnus. How to do this?
6
votes
3answers
6k views

Properly formatted example for Python iMAP email access?

tldr: Can someone show me how to properly format this Python iMAP example so it works? from http://www.python.org/doc/2.5.2/lib/imap4-example.html " import getpass, imaplib M = imaplib.IMAP4() ...
6
votes
4answers
5k views

How do I perform an IMAP search in Python (using Gmail and imaplib)?

In Gmail, I have a bunch of labeled messages. I'd like to use an IMAP client to get those messages, but I'm not sure what the search incantation is. c = imaplib.IMAP4_SSL('imap.gmail.com') c.list() ...
6
votes
9answers
3k views

Recommendations for a .NET component to access an email inbox

I've been asked to write a Windows service in C# to periodically monitor an email inbox and insert the details of any messages received into a database table. My instinct is to do this via POP3 and ...
5
votes
1answer
251 views

Good java webmail applications

Are there good java webmail applications, that can be used to connect to standalone imap servers? Something like roundcube but that can be deployed in an application server. Thanks
5
votes
1answer
199 views

modifying php-imap extension to allow oauth authentication

My php application logs into to Gmail via oauth provided access keys and fetch headers for all messages in inbox. The php-imap extension allows only for login/password based authentication. I want to ...
5
votes
2answers
1k views

Count number of emails in gmail using IMAP

Can anyone tell me how I can get the number of unread items in my inbox from gmail using imap or something else and display it in a label in C# WinForms? I tried using atom feeds, but never could ...
5
votes
3answers
2k views

Move an email in GMail with Python and imaplib

I want to be able to move an email in GMail from the inbox to another folder using Python. I am using imaplib and can't figure out how to do it.
5
votes
1answer
222 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 ...
5
votes
2answers
779 views

sending IMAP commands using php

I'm trying to access yahoo mail IMAP server with a php script. I read that yahoo requires a specific IMAP command “ID ("GUID" "1")”. How do I send this command ?
5
votes
2answers
3k views

How can I download IMAP mail attachments over SSL and save them locally using Perl?

I need suggestions on how can I download attachments from my IMAP mails which have attachments and current date in subject line i.e. YYYYMMDD format and save the attachments to a local path. I went ...
5
votes
2answers
408 views

Get emails from imap server using coldfusion 7

I have tried this example http://www.bennadel.com/blog/1056-ColdFusion-CFPOP-My-First-Look.htm, but it retrieve emails from POP server. Is there any similar way to do for IMAP mail server? I know ...
5
votes
3answers
3k views

IMAP library for .NET

does anyone know if there is a free IMAP library for vb.net? i would like to be able to read and send email from a gmail account using the library
5
votes
1answer
3k views

How to read the body text of an email using ruby's net/imap library?

Maybe i've just got a bad brain today, but i suddenly can't figure out how to read an email with ruby's net/imap library. I've been at it for several hours. I typed several variations of "ruby imap ...
5
votes
3answers
2k views

Getting only new mail from an IMAP server

I am writing a client application that fetches emails from an IMAP server and then stores them in a database. The problem is that once I have checked the mail, the next time I only want to download ...
5
votes
3answers
1k views

Support for IMAP IDLE in ruby

Ok, I have been suck on it for hours. I thought net/imap.rb with ruby 1.9 supported the idle command, but not yet. Can anyone help me in implementing that? From here, I though this would work: class ...
5
votes
3answers
1k views

Download emails(backup) from gmail programatically

Does anyone know a way to execute a bulk dump of every email of a gmail account and write the emails to a file? I'm looking to write a program that would let users back up there gmail ( probably via ...
5
votes
7answers
701 views

Why POP3 protocol survives?

I am getting some basic knowledge e-mail protocol. It seems that IMAP is more powerful than POP3. Then, why POP3 protocol survives? and it is still supported by popular email service like GMail? ...
5
votes
3answers
4k views

IMAP: how to move a message from one folder to another

(using the IMAP commands, not with the assistance of any other mail package)
4
votes
1answer
168 views

PHP: Problems with Microsoft Exchange, no have body of email in PHP

I have a litte problem with imap_fetchstructure, Microsoft SMTP Server (?) and signed mails by application/pkcs7-signature. Normally when I send signed email to gmail server I don't have any troubles. ...
4
votes
4answers
304 views

how can I display the contents of an email to a website?

I would like to display the body contents of an email. I have tried IMAP in php but something is VERY wrong. The IMAP isn't picking up the body of my message. It is picking up ONLY the signature in ...
4
votes
1answer
68 views

php in free(): error: chunk is already free

I have developed a script that uses php's imap_search and when it gets to the stage of finding the emails with the function imap_search() i get a error being produced php in free(): error: chunk ...
4
votes
2answers
445 views

Zend Framework: How to read email attachments (and save to disk)?

I am currently using Zend_Mail_Storage_Imap to read email messages using IMAP. I am able to read the email body (text and html) thanks to the documentation. Now I'm trying to figure out how to save ...
4
votes
1answer
208 views

Why are replies to my SMTP-sent gmail messages not threaded?

I'm sending lots of similar emails out via SMTP using the following Python snippet: def send(from_, to, body): server = smtplib.SMTP('smtp.gmail.com:587') server.ehlo() server.starttls() ...
4
votes
2answers
82 views

.NET Email Processing Advice

I cant seem to find a question that is exactly or close to what im looking for so hence why i am writing a new one. I need some advice in regards to building a Windows Service that reads an IMAP ...
4
votes
1answer
232 views

Get starred messages from GMail using IMAP4 and python

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
votes
3answers
2k views

How to download only new emails from imap?

I have an application that is used to archive emails using imap. Also in this application are many imap accounts that need to be archived. In this moment from time to time the application connects to ...
4
votes
2answers
709 views

PHP imap_search not detecting all messages in gmail inbox

When I run a very simple imap_search on my GMail inbox, the search returns less messages than it should. Here is the script that anyone with a GMail account can run. $host = ...
4
votes
1answer
595 views

PHP - imap/pop3 and Hotmail - Does anybody have working code? [closed]

I'm trying almost 2 days with many different classes and codes to download emails from hotmail but still can't find any working code. Does anybody have working code that can download emails from ...
4
votes
3answers
2k views

Javascript IMAP and SMTP client?

Is it possible to build a SMTP/IMAP client that can run in the browser that uses only Javascript?
4
votes
4answers
235 views

Removing previous part from Reply emails

I'm trying to write application that periodically receives e-mails. It writes every mail into database. But sometimes i'm getting 'Re:' e-mail that looks something like this: New message On ...
4
votes
1answer
676 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 ...
4
votes
1answer
767 views

IMAP Idle Timeout

Lets say I am using IMAP IDLE to monitor changes in a mail folder. The IMAP spec says that IDLE connections should only stay alive for 30 minutes max, but it is recommended that a lower number of ...
4
votes
3answers
1k views

Python, IMAP and GMail. Mark messages as SEEN

I have a python script that has to fetch unseen messages, process it, and mark as seen (or read) I do this after login in: typ, data = self.server.imap_server.search(None, '(UNSEEN)') for ...
4
votes
4answers
862 views

Latest Imap server Library

Hi Does anyone knows good and latest imap server library in C#? Already I used lumisoft imap library. But, as the gmail has changed it's settings, I cannot use it anymore. Need latest imap server ...

1 2 3 4 5 16