pop3 Questions
3
Solved
Most mail clients that support SSL/TLS only require the user to say whether or not SSL should be enabled. The user doesn't have to know anything about Explicit & Implicit SSL and the difference...
2
Solved
I'm working in a mail client project using C#. I'm using both the POP and IMAP protocol to communicate with the server. The problem is than I can not figure out why when I want to get the UID for a...
Daytoday asked 30/3, 2010 at 7:41
4
Solved
1
I'm currently working in a C++ project which has to be able to read emails from an gmail POP3 account just like the title says. Also is important to say that I need to download the attachments (is ...
1
The PHP IMAP Library doesn't have built in ways to change the imap_timeout function for secure pop3 connections. I'm looking to build this functionality so I can set timeout to 1 second for connect...
1
Solved
2
Solved
In my app I need to access mail programmatically without using a MFMailComposeViewController. I have sent email with the help of SKPSMTPMessage from google code. Now I have to connect and check mai...
Scrivens asked 20/1, 2011 at 5:5
3
Solved
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 ...
3
Solved
IMAP messages have a UID for which we all rejoice. However, I'm trying to figure out how to generate a unique ID for a POP3 message and having trouble (old systems like hotmail.com only allow POP3)...
Copley asked 1/5, 2013 at 14:36
8
Solved
I am looking for a method of reading emails using Pop3 in C# 2.0. Currently, I am using code found in CodeProject. However, this solution is less than ideal. The biggest problem is that it do...
2
Solved
I'd like to get a list of everyone who's ever been included on any message in my inbox. Right now I can use the javax mail API to connect via IMAP and download the messages:
Folder folder = imapSs...
Foxhound asked 24/4, 2012 at 4:21
3
Solved
I was messing around with OpenPop, a library written in C# for POP3 mail fetch. It seems to work OK, but I didn't quite get the idea how to make a difference between explicitly attached files to ma...
1
Is there any available implementation of POP3/IMAP server in PHP?
I am handling my e-mail service using sendgrid. I am going to store the messages on my server using files/db/whatever and now I'd ...
2
Solved
I'm looking for a library to access Gmail which can handle attachments. Can someone point me towards this please?
Thanks
2
How can I, using C#, Download an email attachment from my mail (for instance gmail)?
Club asked 11/1, 2010 at 6:38
6
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, bu...
Admonition asked 20/4, 2009 at 21:10
2
Solved
I can receive my mails with Imap with this code sample :
URLName server = new URLName("imaps://" + username + ":"+ password + "@imap.gmail.com/INBOX");
Session session = Session.getDefaultInstanc...
Tophole asked 25/4, 2012 at 21:53
2
Solved
I have looked up Google and Spring documentation but can not find any thing on receiving emails.
I need to build a client (kind of not fully blown client) that can receive emails from POP3 and IMA...
4
Solved
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...
4
Experimenting with Application Messaging over email for Applications. I have already created my SMTP Server but now missing a centralised delivery mechanism. I can create a propriety delivery...
4
Solved
How can I get mail source (headers, body, boundary - all together as a plain text) using Zend_Mail (POP3).
It returns parsed parts by default, I need the raw message source.
Nole asked 24/8, 2011 at 6:4
1
Solved
I'm trying to save email attachment from Google mail account.
AFAIK, it can be done 'walking' the message and getting its payload,
for part in message.walk():
# getting payload, saving attach e...
Smithereens asked 29/11, 2011 at 8:30
1
Solved
I have the following code that reads response from a POP server through Sockets in Java. But the problem is sometimes, when I use the readLine() function to read from the server and if the server d...
5
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 gma...
1
Solved
I would like to have alternate SMTP and POP3 servers on my local machine, for testing code that sends mails and waits for a response, even when I'm offline. GPRS rates in SA are quite prohibitive, ...
© 2022 - 2024 — McMap. All rights reserved.