pop3

Processing incoming email

How do I programmatically read an incoming email with .NET. I need a method to take the content of email message (in this case XML) on a POP server and read it into my application. Ideally this could be solved by: .NET code that I can run as a background task on my webserver to process the email. A service that can POST the contents ...

getting drafts and sent items in Java using pop3

Hi, I am facing a problem regarding getting the drafts and sent mail folder programmaticaly in Java. Although I am able to get the inbox using pop3 and able to send mail via smtp, I am not able to get it done by pop3. Thanks in advance for your reply. ...

Select mails from inbox alone via poplib

I need to download emails from the gmail inbox only using poplib.Unfortunately I do not see any option to select Inbox alone, and poplib gives me emails from sent items too. How do I select emails only from inbox? I dont want to use any gmail specific libraries. ...

Pop3 to SMTP message custom forwarder in C#

I'd like to write a service that periodically checks a POP3 account for new messages and based on custom business logic forwards the messages to an appropriate "To", and possibly changes the "From" as well. I might need to keep some messages on the server until certain conditions are ready for them to be forwarded. I found a sample usi...

Is it possible to Access a Users Sent Email over POP?

Hi, I have been asked to quote a project where they want to see sent email using POP. I am pretty sure this is not possible, but I thought if it was. So is it possible given a users POP email server details to access their sent mail? If so any examples in Python or fetchmail? Regards Mark ...

Does the POP3 protocol allow you to specify a subset of emails to download?

I am writing a POP3 mail client. I want to leave the messages on the server, but I don't want to have to redownload all messages every time I reconnect. If I download all the messages today, and reconnect tomorrow does the protocol support the ability to only download the messages from the last 24 hours or from a certain sequential ID? ...

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? Thanks. ...

Regular Expression for extracting POP3 headers

Hi, I'm trying to work out how to extract POP3 headers using this regex ^(?[a-zA-Z-]+)(?(?=:).+)$ Delivered-To: [email protected] The group returns the ':' character as well which I want to avoid. I'm busting trying to work this out but can't. Need collective wisdom :-) ...

django to send AND receive email?

Hello, I have gotten quite familiar with django's email sending abilities, but I havn't seen anything about it receiving and processing emails from users. Is this functionality available? A few google searches have not turned up very promising results. Though I did find this: http://stackoverflow.com/questions/348392/receive-and-send-e...

Open Source Cocoa/Cocoa-Touch POP3/SMTP library?

I'm looking to write a sample application speaking to a POP3/SMTP server. Instead of re-inventing the wheel with BSD sockets and CFNetwork type calls, I'm curious if there is currently any open source libraries that already take care of alot of the dirty work? I've tried Googling without much luck for anything. Perhaps there's something...

Receiving/Processing emails from .NET

I am working on a project to retrieve emails from a POP3 mailbox and save those to a database. I would like to find a way I can link original messages to replies so I can relationally show them as a chain. I was going to use subject lines those aren't going to be very reliable as they have the ability to change. Is there anything belo...

Is the UID provided by MS Exchange POP3 UIDL command truly unique?

I'm using Net::POP3 in Perl to iterate through a mailbox on an MS Exchange server. I run the UIDL command on each message number and compare the ID returned to previously-seen IDs to see if I've dealt with this message in the past. However, I'm also finding that within an individual POP3 mailbox, the same UID seems to come up multiple ti...

Please help with my problems retrieving email using POP3 protocol

I am using C# and Microsoft .Net Compact Framework 1.0. I tried to implement the POP3 protocol using the System.Net.Sockets.NetworkStream and TcpClient classes. I am able to log in and receive email and save the attachments with some email servers. But for some, I keep running into problems. I read the size of the email message by sen...

Is there any advanced open source pop3 class for php ?

Hi All I am looking for an advanced open source pop3 class for php. For outgoing mails im using phpmailer, and i need pop3 class to handle incoming mails(read, delete. decode). Thanks for reading and your help would be highly appreciated ...

How to do pop before smtp with Zend Mail ?

Hi All I just started to use Zend Mail Compoment and i need pop before smtp, but in the zend mail doc no mention about that. Can anyone advise on that ? Thanks ...

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 just logs and discards messages, it doesn't do IMAP for checking incoming emails/mailboxes. I don't need/want a full-blown server, just some...

How to grab attachment programmatically (C#) from a POP3 mail?

Is there any C# API for this task? Any suggestions? ...

What's faster for getting Mails into Rails: Pop3 / Imap or direct MySQL query?

Hi, I'll rewrite a different question of mine, because the problem case somewhat changed: If I want to get mails from my mailserver (different machine) into my Rails App to process it there, what is faster: Connecting via net/Pop or net/imap to download the mails Storing the Mails on the Mailserver in a MySQL Database (using somethin...

Email Monitor Synchronization

I'm writing a C# program that monitors a dedicated Gmail account using POP3 for specialized command emails and reacts appropriately. For maximum reliability, I will run this program on several computers throughout the country. I currently have a race condition where two instances of the program can read the same message before one of th...

Check unread count of Gmail messages with Python

How can I check the number of unread Gmail message in my inbox with a short Python script? Bonus points for retrieving the password from a file. ...