Questions tagged [pop3]

Post Office Protocol version 3

Useful links

945 questions
-1
votes
1 answer

Get receiver email address using c# pop3

That sounds funny. But in Gmail, we get list of both sent and received emails in pop3. So i need to get email address of sent emails (receiver). hint: for received emails we check email like this message.Headers.From.Address But i need info of sent…
Sahil Bhatia
  • 165
  • 1
  • 1
  • 8
-1
votes
1 answer

GMAIL POP server not marks my emails as "popped"

I am developing Java app through which I am connected to GMAIL POP server successfully. Also while fetching messages I encounter into issue reported as: GMAIL POP ISSUE. I encounter into other GMAIL posts that explains behaviour for GMAIL POP link.…
user2618875
  • 889
  • 2
  • 11
  • 23
-1
votes
2 answers

How can I change port # 25 from receiving incoming emails in postfix?

For my merchant account they use Trustwave to do PCI scans on my website and I keep failing because I have port # 25 open. Now if I close this port, I pass the Trustwave PCI scan but then I can't receive any emails from anyone; which is not good! …
olimits7
  • 555
  • 2
  • 9
  • 26
-1
votes
1 answer

POP3/IMAP/SMTP client for asp.net MVC

Is there any POP3/SMTP/IMAP Client for asp.net mvc4? Should support 1) Retrieve email in Inbox, Draft and Send separately. 2) Send eMail with attachment. 3) Download multiple attachment in an email as zip or…
JKANNAN
  • 83
  • 1
  • 10
-1
votes
1 answer

Cant use authentiacate using Javamail unless "Access for less secured apps " enabled

I am writing a simple java program which can check my gmail inbox.I followed the tutorials at http://www.tutorialspoint.com/javamail_api/javamail_api_checking_emails.html. But when i try to run this program import java.util.Properties; import…
user3290349
  • 1,227
  • 1
  • 9
  • 17
-1
votes
1 answer

How to get Multiline response in POP3

try{ smtpSocket= new Socket("pop.rediffmail.com",110); os=new DataOutputStream(smtpSocket.getOutputStream()); is=new BufferedReader(new InputStreamReader(smtpSocket.getInputStream())); System.out.print("Inbox…
-1
votes
1 answer

PHP Keep mails on server using POP3

Background of the project : I am working on a project which goal is to keep track of all emails received in a mailbox. The app connects to the mailbox and store every emails as files. The user must have the possibility to use his mailbox regardless…
malystrix
  • 11
  • 2
-1
votes
3 answers

How can I retrieve an e-mail, open a .msg attachment, and parse the attachment, in ASP.NET?

I need to be able to make a program that looks through a mailbox of bounced messages, where the messages come back with the initial message in a .msg attachment, and open the .msg attachment for processing in ASP.NET 2.0. Is there any sort of code…
Brisbe
  • 1,588
  • 2
  • 20
  • 42
-1
votes
1 answer

Simple Mail Client

I try to create simple mail client. Now I can receive list of messages from mail box: // create an instance of TcpClient TcpClient tcpclient = new TcpClient(); // HOST NAME POP SERVER and gmail uses port number 995 for POP …
-1
votes
2 answers

Javamail issue with authentication using POP3 protocol

I am facing problem related to authentication with exchange server 2010. Same was working with 2007. Below is debugging logs. Properties props = System.getProperties();
props.setProperty("mail.debug.auth", "false");
Session session =…
Anant Agarwal
  • 63
  • 1
  • 10
-1
votes
2 answers

Is it possible to send email using pop3 protocols?

Is there any possible ways to send email using pop3 protocols?.
Naveen K
  • 859
  • 4
  • 14
  • 29
-1
votes
1 answer

Duplicates message in pop3

When im doing my lab project ("pop3 mail client") im find something mystery in server answer- messages duplicates two times, for example: S: Subject: Test 1 S: From: *** *** <***@gmail.com> S: To: ***@mail.ru S: Content-Type: multipart/alternative;…
levsha128
  • 38
  • 3
-1
votes
1 answer

synchronising folders in thunderbird 14

I use thunderbird 14.0 and I make quite a lot of topic-specific folders in my local thunderbird client. I want them to be available in the mail server, but I don't know how to set this option in my thunderbird. I read…
ducin
  • 25,621
  • 41
  • 157
  • 256
-1
votes
1 answer

Best Python Library for Downloading and Extracting Addresses

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…
32423hjh32423
  • 3,048
  • 7
  • 44
  • 59
-1
votes
2 answers

Retrieve Yahoo email details using C#

I am trying to retrieve mails on my Yahoo account using C#. I tested OpenPop to do that I write that Pop3Client objClient = new Pop3Client(); objClient.Connect("pop.mail.yahoo.com", 995,…
1 2 3
62
63