pop3 Questions
2
Solved
I am using POP3 protocol to retrieve my emails in my .NET application. I need to read just new emails only but found in many blogs that it is not possible to retrieve just "unseen" or "new" mails u...
Petrozavodsk asked 11/5, 2011 at 6:45
1
Solved
The code below uses javamail API to access gmail,
String host = "pop.gmail.com";
int port = 995;
Properties properties = new Properties();
properties.put("mail.smtp.socketFactory.class", "jav...
Jefferyjeffie asked 8/5, 2011 at 6:20
3
Solved
I'm trying to make a Python program that retrieves only the body text of an email without passing headers or any other parameters. I'm not sure how to go about this.
The goal is to be able to send...
3
Solved
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 s...
Helman asked 8/4, 2009 at 15:38
1
Solved
I'm fetching emails from a POP3 server and I'd like to make a difference between a regular email and DSN (Delivery Status Notification) / NDR (Non-Delivery Report/Receipt) messages.
What is the be...
3
Solved
I'm a big fan of the email feature available in Backpack, where it creates a unique email address per backpack page, and any emails sent to that address will be posted to the page.
My question is ...
2
Solved
1
Solved
I am trying to prepare a complete list of behaviour that Gmail POP3 exhibits, that you wouldn’t expect to generally find in a POP3 server.
For example, Gmail appears to ignore the DELE (delete) co...
2
Solved
I'm using open source component to retrieve emails from my mail server using vb.net (pop3)
but because i have a lot of messages it gives me response Time out and i think if i just got the new messa...
Emersonemery asked 26/8, 2010 at 14:54
2
Solved
I am using php imap functions to parse the message from webmail. I can fetch messages one by one and save them in DB. After saving, I want to delete the inbox message. imap_delete function is not w...
2
Solved
There is a growing trend to use port 587 for all client to MTA communications. It's in a standards track RFC: http://www.ietf.org/rfc/rfc2476.txt
My question is "Why?". Why have 2 instances of a S...
Corinnacorinne asked 14/8, 2010 at 20:19
3
Solved
Neither poplib or imaplib seem to offer proxy support and I couldn't find much info about it despite my google-fu attempts.
I'm using python to fetch emails from various imap/pop enabled servers a...
1
Solved
I have used an open source code from CodeProject to read email from incoming mail server(POP Server). The code can be found at following location: http://www.codeproject.com/KB/IP/Pop3MimeClient.as...
2
Solved
I need to fetch email from my gmail account using RoR.
require 'net/pop'
Net::POP3.start('pop.gmail.com', 995, username, password) do |pop|
if pop.mails.empty?
puts 'No mail.'
else
#pop.ea...
Corcovado asked 19/4, 2010 at 11:1
2
I want to read Emails through pop3.
On my asp.net web page how to do let me know,
which control should I use for showing email?
4
Solved
I am creating a web based email client using c# asp.net.
What is confusing is that various email clients seem to add the original text in alot of different ways when replying by email.
What I was...
5
Solved
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 c...
3
Solved
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 sou...
Dede asked 11/4, 2009 at 22:54
1
Is there any C# API for this task? Any suggestions?
1
Solved
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 de...
Lymanlymann asked 17/4, 2009 at 17:57
5
Solved
Can anyone recommend software or a .NET library that will check for bounced emails and the reason for the bounce? I get bounced emails into a pop3 account that I can read then.
I need it to ...
Kandykane asked 10/8, 2008 at 16:16
2
Solved
I am using an open source client to programmatically process incoming emails (on Windows 2003). The only way to prevent receiving previously read emails is to delete them from the server. This is l...
3
Solved
I'd like to use a C# program to poll a gmail account and automatically download new messages. I know you can use gmail as an outbound SMTP server, but is there any way to access new messages sent t...
6
Solved
What does the POP3 CAPA UIDL command do?
Christner asked 29/9, 2008 at 14:49
7
Solved
For the past few weeks, I've been trying to learn about just how email works. I understand the process of a client receiving mail from a server using POP pretty well. I also understand how a client...
© 2022 - 2024 — McMap. All rights reserved.