Questions tagged [openpop]

open source POP3 client and MIME parser written in C#

From Sourceforge project:

.NET library written in C# with a full implementation of a POP3 client. Easy to use but yet powerful. Includes a robust MIME parser backed by several hundred test cases.

http://hpop.sourceforge.net includes examples, documentation and a general introduction for email.

109 questions
2
votes
1 answer

VB.NET OpenPop listing only unread messages

I'm facing a problem. I am able to read messages on my VB.net app using OpenPop, but I'd like to list only unread messages due the long time I should wait to list them all. Here is the documentation in C# and here is what I tried, although…
2
votes
1 answer

Does a password need encoding when client authenticates using OpenPop?

I'm using openpop to connect to gmail pop server. This is the code (very simple) using (var client = new Pop3Client()) { var username = mailProperties.UserId; client.Connect(mailProperties.Server, mailProperties.Port,…
Daniel
  • 9,312
  • 3
  • 48
  • 48
2
votes
1 answer

How to save email "Messages" attachment using OpenPop

I am developing a console application,where i want to download the attachment from mails coming to the Mail(only one account).I am able to download the attachment,if the attachment is attached to the mail directly,i am using OpenPop library.Below is…
2
votes
1 answer

OpenPop deleting messages

When I try and delete a message it deletes 4 at a time even though I explicitly state otherwise, since I have like 700 messages, I had to display a maximum of 4. public void inboxupdate() { client.Connect("pop.googlemail.com", 995,…
user2319683
  • 79
  • 1
  • 7
2
votes
1 answer

OpenPop no longer downloading Message UIDs

BACKGROUND First time using Pop3. Using OpenPop library. Have configured Gmail to work with Pop3. PROBLEM Have been debugging code to see what happens (and try to get body text). Messages downloaded first 2 or 3 times.. got the UIDs with this: var…
Matt
  • 6,787
  • 11
  • 65
  • 112
2
votes
2 answers

How to send mail using Openpop.net?

I using OpenPop.net to get mail from server, but i can't find method send mail in OpenPop.net, how to send mail in OpenPop.net?
Nhu Nguyen
  • 874
  • 3
  • 18
  • 33
2
votes
1 answer

How to retrieve size of each attachment of mail using openpop .net

I use openpop .net library to retrieve mails from mail server with POP3. All works fine but I can't retrieve size of each attachment of mail. I founded GetMessageSize(i) but this size is sum of all attachments. Then the question is how I can…
wertyk
  • 410
  • 10
  • 30
2
votes
1 answer

OpenPop.NET - modifies a character in email

I'm using the OpenPop library to read emails. I have the problem that when reading the body of the Email, the library modifies a character. See the following example: Email body: Diseño Code c#: OpenPop.Pop3.Pop3Client objPOP3 = new…
Gonzalo
  • 141
  • 3
  • 9
1
vote
1 answer

Are there any .NET OpenSource IMap libraries available?

I'm currently using OpenPop for handling Pop3 email within my application and have found it to be very reliable. But I need to be able to support IMAP too. I noticed there is an OpenImap library from the same author as OpenPop, but it is in…
jaffa
  • 26,770
  • 50
  • 178
  • 289
1
vote
4 answers

reading pop3 emails, why not getting read emails?

I'm reading emails from my web domain in C# and using OpenPop.net library. It is reading email but it only get emails that are new. I want to make it like hotmail that it should fetch read and unread both then using CSS I will display them…
user576510
  • 5,777
  • 20
  • 81
  • 144
1
vote
1 answer

using openpop.dll to connect to Gmail in C# Service

I am attempting to use the openpop.dll to pull email from gmail account. but I get the following error Problem logging in using method Auto. Server response was: -ERR [AUTH] Username and password not accepted. Exception…
1
vote
1 answer

Forwarding OpenPOP Attachments to SMTP (System.Net.Mail)

I have an application I have built in Visual Studio using VB.NET that pulls mail messages from an Outlook mailbox and saves the message information into a database and downloads the attachments (if any) into a folder. Before saving the mail message…
1
vote
0 answers

OpenPop.Net and TLS 1.2 (Server did not accept user credentials)

I'm using openpop to read PEC email on Aruba with fw 4.6, it works fine until Aruba update your security protol to tls 1.2. pop3Client.Connect("ServerName", 995, True) OpenPOP: (DEBUG) Server-Response: "-ERR [AUTH] La versione del client di posta…
Dado
  • 21
  • 3
1
vote
1 answer

OpenPop trouble reading body of email

I am having trouble processing OpenPop to read the body of an email. I think the problem is that I don't know how to handle images. My minimal code is: for (int i = messageCount; i > 0; i--) { …
KeithL
  • 5,348
  • 3
  • 19
  • 25
1
vote
0 answers

What should be the Hostname provided to connect to Outlook using openpop

I am using openPop library to connect to email and fetch using my c# code. I am able to fetch mails from gmail account by providing the server details as hostname : "pop.gmail.com" , port : 995 ,SSL : true insdide client.connect() method.Followed by…
Swaroop
  • 501
  • 5
  • 18