pop3

Is it possible to change the pop3 and ldap settings of Outlook with C#?

Is it possible to change the password and other settings of a local Outlook client's pop3 with c#? Any help is appreciated. I did not have much luck searching. Thank you. ...

POP3 message format rfc

Hi people, I'm currently coding, as the part of a bigger project, a webmail client. I'd just need a quick reference and/or pointer towards the right direction about POP3 messages, as I'll have to parse them. I don't want to use available libraries for this. I just need to know if there is something I can read to understand what to expe...

Pop3 Episode 2: Mime Type strategy?

Okay, so let's say I have a message fetched from a pop3 server. What I ultimately want to do is to put it in its corresponding user's mailbox, which is an XML file. For the headers, I managed something good already, so I don't need to think about it, I have to do the message body's part. How should I process the file? For now, my log...

Create a simple POP3 *SERVER*

There are tons of Google examples on making a POP3 client in .net but I want to make a simple custom POP3 service/server to retrieve email for the user from a custom database. Are there any components or examples of that? ...

Efficiently get unretrieved message Ids from a POP3 server.

I understand most of the POP3 protocol, but one thing that bothers me is how POP3 clients efficiently get a list of unretrieved message ids from the POP3 server. Many services like Yahoo and Gmail now offer gigs of space and most people (myself included), rarely if ever delete an email message. I'm currently implementing a simple POP3 c...

Programmatically open an email from a POP3 and extract an attachment

We have a vendor that sends CSV files as email attachments. These CSV files contain statuses that are imported into our application. I'm trying to automate the process end-to-end, but it currently depends on someone opening an email, saving the attachment to a server share, so the application can use the file. Since I cannot convince th...

How to interpret unprintable characters in the timestamp sent by the Lotus Notes POP3 server?

I wrote a program for retrieving mail from POP3 servers. One of its users encounters the following problem... His mail server when my program connects to it issues a greeting: +OK Lotus Notes POP3 server version X2.0 ready <PrintableCharacters.UnprintableCharacters> The part in angle brackets is a so-called challenge for the APOP aut...

Getting multiple Java pop3 clients to work with GMail.

Hello, I have written a nice program in Java that connects to a gmail account and download atachments sent to it. Once an attachment has been downloaded, it is marked as read and is not downloaded ever again. This program will have to run in multiple instances with each program downloading unique attachments so that a single attachment i...

Are labels relevant when download emails from gmail to sqlserver?

Hi, I want to create a local copy of my emails on gmail. would labels be relevent in this process? How would I access a specific folder when using POP3? ...

Parse Gmail with Python and mark all older than date as "read"

Long story short, I created a new gmail account, and linked several other accounts to it (each with 1000s of messages), which I am importing. All imported messages arrive as unread, but I need them to appear as read. I have a little experience with python, but I've only used mail and imaplib modules for sending mail, not processing acco...

Best Python Library for Downloading and Extracting Addresses

Hello I've just been given a project which involves the following steps Grab an email from a POP3 address Open an attachment from the email Extract the To: email address Add this to a global suppression list I'd like to try and do this in Python even though I could it in PHP in half the time (this is because I dont know anywhere ne...

C# OpenSource POP3 class with SSL support?

Possible Duplicate: Reading Email using Pop3 in C# Can anyone recommend a good POP3 library for C#? I'm surprised there isn't one in the .NET framework simliar to SMTPClient. SSL support would be nice so that it could be used w/ Gmail. ...

Extracting the To: header from an attachment of an email

I am using python to open an email on the server (POP3). Each email has an attachment which is a forwarded email itself. I need to get the "To:" address out of the attachment. I am using python to try and help me learn the language and I'm not that good yet ! The code I have already is this import poplib, email, mimetypes oPo...

accessing my gmail inbox via php code

how i can access my gmail account through my php code? I need to get the subject and the from address to from my gmail account.And then i need to mark the accessed as read on gmail Should i use gmail pop3 clint?is that any framework that i can use for accessing gmail pop3 server. ...

PHP: Download incoming email from POP3 or IMAP, parse it, and mark it as read/delete on server.

Hi there, I'm trying to add incoming email to my web application. It's built on CodeIgniter and PHP, and as far as I can tell I haven't found any CI libraries to do this. What I'd like to do is have a controller that connects to my mail box, via POP3 or IMAP, and retrieves the message, parses it then removes it from the server. Piping...

How to create new folder on POP3 protocol

I want to create a folder with the name "Spam" by using Javamail Api, but I'm not allowed to create any folder on POP3 protocol. What should I do? ...

C# Fetch all email via POP3

Possible Duplicate: Reading Email using Pop3 in C# How can I fetch/download all email (preferably as MailMessage) via POP3 from a mailserver using C#? ...

Configure Outlook Mail Settings Programmatically?

Was wondering if there was a simple way to add and configure a POP3 server to Outlook's mail server settings programmatically? Searching Google seems to yield results that tell me I have to reverse-engineer the gobbledygook stored under HKCU\Software\Microsoft\Windows NT\Windows Messaging Subsystem\Profiles. My employer wanted to see if...

gmail to sms from my application

Hi there Does anyone know how can i send a sms messsage when e-mails are arriving in a gmail account? I know some PHP, C/C++ and C#, and I plan to read the new message using POP3. The problem is that I don't know how can I send a SMS message to a mobile phone. Do I need a SMS server? can you give me some advices? ...

CF.NET SMTP/POP3 clients

Hello, I'm working on an order entry application targeted to windows mobile devices. I need to be able to send and receive emails from within the application, but without using pocket outlook (this is a customer requirement). I see that the .net mail classes are not available for the compact framework. So I need to look elsewhere. I ...