JVM Languages
mail4me.txt
Associated article: The Mail4ME Project
Tags: JVM Languages
Published source code accompanying the article by Joerg Pleumann about Mail4ME, a lightweight implementation of the POP3 and SMTP protocols-- including MIME support and with IMAP support to come-- allowing Java-based wireless devices to access e-mail services at any time, from any place.
The Mail4ME Project
by Joerg Pleumann
Listing One
public class MailingList {
static String pop3Host = "pop3.yourisp.com";
static String pop3User = "user0815";
static String pop3Pass = "secret";
static String smtpHost = "smtp....


