Stefano Bagnara wrote:
Norman Maurer wrote:
After looking in the chartable fo windows it seems that the 8bit was
convertet to 7bit an so the last bit was set to 0

maybe thats a help ..


What OS is installed in the host?
What JVM?
What is the default Locale of the OS?

Other useful informations can be collected adding this code (e.g. somewhere in the AddFooter or anywhere else):

String encoding = (new InputStreamReader(System.in)).getEncoding();
log.debug("System Encoding: "+encoding);
log.debug("Default Java Charset: "+MimeUtility.getDefaultJavaCharset());

You can also try adding "-Dfile.encoding=8859_1" and "-Dmail.mime.charset=iso-8859-15" to your java vm parameters and check the above command results and the encoding issues.

Stefano


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to