JavaMail Section Index | Page 6
How do I send a mail message at a certain time?
The java.util.Timer class permits timed execution of events. It is completely unrelated to what you want to do, like send mail.
How can I convert an Outlook mailbox/data file to Linux mbox format?
There is a project over at Sourceforge that does exactly this for you. Never tried it myself, but you can grab it from http://sourceforge.net/projects/ol2mbox.more
How can I remove headers in JavaMail?
The MimeMessage has a method called removeHeader(String name) This will remove all headers with a given name.
Note that the folder the message is in will have to be opened READ_WRITE at the point...more
Where can I find the sun.net.smpt.SmptClient class?
This class comes with the Sun runtime. As the package name of sun.net implies, it is non-standard and should not be used directly.
Where can I find the sun.net.smtp.SmptClient class?
This class comes with the Sun runtime. As the package name of sun.net implies, it is non-standard and should not be used directly.
What's new for JavaMail 1.3?
The proposed changes for JavaMail 1.3 are listed at http://java.sun.com/products/javamail/JavaMail-1.3-changes.txt.more
Does the JavaMail API support embedded uuecoded blocks?
Not directly, though there is nothing to stop you from extending the library to support it.
How can I access my Hotmail account through the JavaMail API?
Hotmail doesn't use POP / IMAP. Instead, it uses a WebDAV based protocol (aka HTTPMail). There is a provider under development at SourceForge at http://sourceforge.net/projects/jhttpmail/.more
Does anyone know of a JavaMail API implementation for Lotus Notes R5?
Since the mailbox in lotus notes is just a notes database, you could use the Notes Java API supplied by lotus. Check out: http://www.lotus.com/developers/devbase.nsf/homedata/homejava.
Also, Chan...more
How to get message id of the mail that is sent (not read)?
You'll need to subclass MimeMessage and get the id from the subclass after the header has been created. I believe you'll be able to get the generated header/id from updateHeaders().
How do I know about the SMTP and POP3 addresses of the mail service providers?
Not every service may provide POP3/IMAP/SMTP support. Even if so, they may choose to guard it for various reason. You need to contact a particular service provider for the details.
How to get access to the mailbox where user id contains space in it?
How to get access to the mailbox where user id contains space in it? I got few mail users created with space char in it (MS Exchange and Lotus Notes both).
While same code works for the mail users ...more
Is there a common solution for checking if a user has email on an Exchange server from Java code?
The only pure Java solution for your situation is to enable IMAP gateway at your MS Exchange server and use the IMAP provider.
You can also develop your own JavaMail provider (i.e. using any Java...more
How do I fold a ParameterList?
The default (no-arg) toString() method returns the list unfolded. If you need the list folded, you can pass an int into the toString() method to indicate folding should be done and how many charac...more
What is folding?
According to RFC 822, folding is the process of splitting a header field into multiple lines.