javax.mail

Can I add classes to sun's rt.jar file?

I downloaded the Javax.mail package. I have jdk1.6.0_11. Problem is...I cannot get javac or java to find those classes! I can get apps to compile using JCreator LE ( by adding the mail jar to its search list ) but, when I try to run the app in a command window, it fails. Can I add these new classes to the rt.jar without hurting my jdk ...

Recommended way to send email from a web app?

I have a web app on JBoss 4.2.3 and I'd like it to send email. I could do something like: try { Properties props = System.getProperties(); props.put("mail.transport.protocol", "smtp" ); props.put("mail.smtp.starttls.enable","false" ); props.put("mail.smtp.host","smtp.somehost.com"); props.put("mail.smtp.auth", "true" ); Authenticator au...

Exchange server will not accept username/password provided with javax.mail API

I have a lovely little Java client that sends signed email messages. We have an Exchange server that requires username/password authentication to send a message. When I connect to the exchange server, I get this error: avax.mail.AuthenticationFailedException: failed to connect at javax.mail.Service.connect(Service.java:322) ...

Setting the from name in a javax.mail.MimeMessage?

Currently, our application uses a javax.mail to send email, using javax.mail.MailMessage. We set the From headers of the email this way: Message msg = new MimeMessage(mailSession); msg.setFrom(new InternetAddress("[email protected]")); This works just fine, but we'd like to make the "From" section a little more user-friendly. Curren...

Javax.mail in JNLP

Hey! I have a problem with my program. I develop in Netbeans, and when i run the program it is working fine. i built it, created a *.jar file, and updatet it in my JNLP file. here comes the trouble. as i'm using javax.mail.* in my program, the jnlp package just ignores all parts of it. Just to be clear, i'm working on a mail client. ...

IMAP - javax.mail. - Fetching Only Body Without Attachment

Hi, I am trying to develop an IMAP email client using the javax.mail API. I have been able to contact the servers, fetch emails, attachments and other operations without any problem. However, we would not want to fetch the attachment until the user wants to view it explit in order to improve the performance. This would mean that we wou...

Tomcat 6 thread safe email queue (javax.mail.*)

Hi I have design/architecture question. I would like to send emails from one of my jsp pages. I have one particular issue that has been a little bit of a problem. there is an instance where one of the pages will need to send around 50 emails at near the same time. I would like the messages sent to a queue where a background thread wi...

Loading .eml files into javax.mail.Messages

I'm trying to unit test a method which processes javax.mail.Message instances. I am writing a converter to change emails which arrive in different formats and are then converted into a consistent internal format (MyMessage). This conversion will usually depend on the from-address or reply-address of the email, and the parts of the emai...

How to add a message as an attachment on another message with javax.mail

Hello. I've got a mailer daemon that check a box and fetch the mails inside every X mins. When an error occurs, I need to send a alert mail, with the faulty message as an attachment. I dont want to create a file, write the content from the original message and then add the file to the error message, I want to directly set the MimeBodyP...

How to mark messages that are received by an java application using javax Mail Api?

I want to create an application that gets all e-mails from an e-mail account using imap. When I first run the application I get all mails, than if I run it again I want to mark the messages that was read before so I can receive only new messages. I found that Message Object contains Flags(System Flags and User defined flags), but I can'...

Character corruption for Chinese (simple and traditional) and Korean texts

Hi, I have a setup, where emails received by mail server(postfix) are taken on and the resulting email's body(html or plain text) and attachments are parsed to separate files and saved, for this i use javax mail api. The problem occurs for email body when it is in Chinese (simple and traditional) (charset GB2312, as per email header) o...