Sun Microsystems has released version 1.3.2 of the JavaMail API.
"The JavaMail API 1.3.2 release contains over 25 bug fixes and several new features, including: SSL/TLS support for all protocols, STARTTLS support for the IMAP and SMTP protocols, SASL support for the IMAP protocol and access to detailed SMTP error codes."
JavaMail API 1.3.2 download
JavaMail home page
-
Sun releases JavaMail 1.3.2 (15 messages)
- Posted by: Dion Almaer
- Posted on: October 26 2004 23:06 EDT
Threaded Messages (15)
- Thanks a lot by shawn spencer on October 27 2004 11:14 EDT
- Sun releases JavaMail 1.3.2 - but its still very test-unfriendly by Nick Minutello on October 27 2004 21:37 EDT
- Internationalization bug has still not been solved! by net guard on October 28 2004 01:02 EDT
- Re: Internationalization bug has still not been solved! by Erwin Bolwidt on October 28 2004 10:49 EDT
- Re: Internationalization bug has still not been solved! by net guard on October 29 2004 09:20 EDT
- Re: Internationalization bug has still not been solved! by Erwin Bolwidt on October 28 2004 10:49 EDT
- Webmailers using JavaMail? by Rias A. Sherzad on October 28 2004 06:58 EDT
- Webmailers using JavaMail? by Ronald Tetsuo Miura on October 28 2004 07:23 EDT
-
James <> Webmailer by Rias A. Sherzad on October 28 2004 01:15 EDT
-
ZOË? by Zoe Info on October 28 2004 06:51 EDT
-
ZOË? by graham o'regan on October 29 2004 06:04 EDT
-
ZOË? by graham o'regan on October 29 2004 06:05 EDT
- alternative by Vic Cekvenich on October 29 2004 08:15 EDT
- Groupware clients by Leonard Gurevich on October 29 2004 09:42 EDT
- New Webmailer project? by Rias A. Sherzad on October 29 2004 10:35 EDT
-
ZOË? by graham o'regan on October 29 2004 06:05 EDT
-
ZOË? by graham o'regan on October 29 2004 06:04 EDT
-
ZOË? by Zoe Info on October 28 2004 06:51 EDT
-
James <> Webmailer by Rias A. Sherzad on October 28 2004 01:15 EDT
- Webmailers using JavaMail? by Ronald Tetsuo Miura on October 28 2004 07:23 EDT
- I made a reference implementation of Java Web Mail myself by Linh Chau on August 12 2005 16:02 EDT
-
Thanks a lot[ Go to top ]
- Posted by: shawn spencer
- Posted on: October 27 2004 11:14 EDT
- in response to Dion Almaer
I like the line which says
"Access to Detailed Error Codes" . It was a pain to debug otherwise. -
Sun releases JavaMail 1.3.2 - but its still very test-unfriendly[ Go to top ]
- Posted by: Nick Minutello
- Posted on: October 27 2004 21:37 EDT
- in response to Dion Almaer
Still nary an interface to be found - and lots of final classes... :-(
Javamail is such a pain when it comes to testing... -
Internationalization bug has still not been solved![ Go to top ]
- Posted by: net guard
- Posted on: October 28 2004 01:02 EDT
- in response to Dion Almaer
com.sun.mail.util.ASCIIUtility
public static byte[] getBytes(String s)
{
char ac[] = s.toCharArray();
int i = ac.length;
byte abyte0[] = new byte[i];
for(int j = 0; j < i;)
abyte0[j] = (byte)ac[j++];
return abyte0;
}
it just cast a Character to a byte, so it can't handle characters such as Chinese character.
this function is called from com.sun.mail.util.LineOutputStream, and will cause error for file attachement's title. -
Re: Internationalization bug has still not been solved![ Go to top ]
- Posted by: Erwin Bolwidt
- Posted on: October 28 2004 10:49 EDT
- in response to net guard
Messages headers are required to be in US-ASCII, so it's only logical that only US-ASCII characters are used.
RFC2047 defines a way to encode other character sets using the US-ASCII character set in message header fields, but knowing when this encoding can be performed is specific to the definition of the header field, so can't be done generically.
You'll have to encode the attachment's description yourself using the rfc2047 encoding before placing it in the header..
- Erwin -
Re: Internationalization bug has still not been solved![ Go to top ]
- Posted by: net guard
- Posted on: October 29 2004 09:20 EDT
- in response to Erwin Bolwidt
Thanks for your reply. -
Webmailers using JavaMail?[ Go to top ]
- Posted by: Rias A. Sherzad
- Posted on: October 28 2004 06:58 EDT
- in response to Dion Almaer
Hi there,
Does anyone know if there are good open-source webmailers out there that use the JavaMail API?
The few that I find on sf.net don't really turn me on :-)
Thanks,
Rias
http://www.sherzad.com -
Webmailers using JavaMail?[ Go to top ]
- Posted by: Ronald Tetsuo Miura
- Posted on: October 28 2004 07:23 EDT
- in response to Rias A. Sherzad
-
James <> Webmailer[ Go to top ]
- Posted by: Rias A. Sherzad
- Posted on: October 28 2004 13:15 EDT
- in response to Ronald Tetsuo Miura
Hi Ronald,
Thanks for the link, but "James" is a mailserver and not a webmailer, such as Popper (written in PHP) or JWebmail (written in Java, but only Linux & it's outdated).
Rias -
ZOË?[ Go to top ]
- Posted by: Zoe Info
- Posted on: October 28 2004 18:51 EDT
- in response to Rias A. Sherzad
http://zoe.nu/ perhaps? -
ZOË?[ Go to top ]
- Posted by: graham o'regan
- Posted on: October 29 2004 06:04 EDT
- in response to Zoe Info
Have a look at
http://java-source.net/open-source/web-mail
for a comprehensive list of java web mail clients. Compared to other languages, there really aren't many clients availble for Java. It would be useful to kick-start a project that implemented the functionality of a solid tool like Open Webmail (cache using Hibernate etc).
In fact, we are missing many simple, coherent, groupware applications. PHP has a much richer list of groupware clients availble. -
ZOË?[ Go to top ]
- Posted by: graham o'regan
- Posted on: October 29 2004 06:05 EDT
- in response to graham o'regan
In fact, is anyone interested in trying to get something like this off the ground? -
alternative[ Go to top ]
- Posted by: Vic Cekvenich
- Posted on: October 29 2004 08:15 EDT
- in response to graham o'regan
as an alternative, you might want to look at apache's commons-net.
.V -
Groupware clients[ Go to top ]
- Posted by: Leonard Gurevich
- Posted on: October 29 2004 09:42 EDT
- in response to graham o'regan
Take a look at lucane: http://lucane.org/groupware/
* A peer to peer quick message service
* Client/Server and peer to peer file sharing
* A multi-user chat
* Forum & Forum administration
* Calendar
* IMAP mail client based on JMail
* Personal notes
* Todo List
* AudioConf using jspeex
* Object based network protocol
* Client/Server and peer to peer
* User and groups management
* Multi Language system
etc... -
New Webmailer project?[ Go to top ]
- Posted by: Rias A. Sherzad
- Posted on: October 29 2004 10:35 EDT
- in response to graham o'regan
Hi,
JWebmail is out-of-date. I couldn't make it run under Windows properly, it doesn't use the latest JavaMail APIs and the developer is not updating it anymore...
I started conceptual work on a Java-based webmailer a while ago and I might start the programming soon. Besides the standards (POP3, Addressbook, CSS, Multiple Accounts) it will contain a few more sophisticated features, such as tricking filters like "Webwasher", full support for Arabic fonts, a template-based, "brand-able" system for any kind of device (Regular Monitor, Lynx-Browser, PDAs etc.) and a PlugIn-Architecture.
Good to know I'm not programming something that already exists lol
Rias
sherzad.com -
I made a reference implementation of Java Web Mail myself[ Go to top ]
- Posted by: Linh Chau
- Posted on: August 12 2005 16:02 EDT
- in response to Dion Almaer
I made a reference implementation of Java Web Mail, using JSP/Servlet and Java Mail API. It's simple, not rich in functionalities, but easy to maintain and add new functionalities.
An introduction of my Java Web Mail can be found here:
http://www.pcworld.com.vn/pcworld/magazine.asp?t=mzdetail&atcl_id=5f5e5c575e5e58
Source code can be found here:
http://www.quantrimang.com/download/ebooks/javawebmailsource.zip
You can run the test from here:
http://www.hanoian.com/jspmail/