|
View:
New views
8 Messages
—
Rating Filter:
Alert me
|
|
|
javax.mail.MessagingException: Failed to load IMAP envelopeHi,
I've got a funny problem which causes the following exception. It's funny because the program is running on my own machine, but it is not running on the machine of a colleague of mine (actually, it is running without problems on at least two different machines in different networks; the exactly same problems occur also on at least two different machines). We are running the exact same program code, the exact same parameters etc. pp. javax.mail.MessagingException: Failed to load IMAP envelope at com.sun.mail.imap.IMAPMessage.loadEnvelope(IMAPMessage.java:1226) at com.sun.mail.imap.IMAPMessage.getSubject(IMAPMessage.java:331) at de.soknos.components.dispatcher.impl.DispatcherImpl.processNewMail(DispatcherImpl.java:218) at de.soknos.components.dispatcher.impl.DispatcherImpl.pullMessagesFromDispatcher(DispatcherImpl.java:484) at de.soknos.components.dispatcher.impl.DispatcherImpl.main(DispatcherImpl.java:62) Actually, this happens when the first message from "INBOX" is fetched, the corresponding DEBUG-output on the console is: A4 FETCH 1 (ENVELOPE INTERNALDATE RFC822.SIZE) * 1 FETCH (ENVELOPE ("Thu, 16 Oct 2008 19:19:19 +0200" "[PROCESSED] Fwd: Test Nummero 3 [MESSAGE]" (("Stefan Schulte" NIL "ste.schulte" "gmail.com")) (("Stefan Schulte" NIL "ste.schulte" "gmail.com")) (("Stefan Schulte" NIL "ste.schulte" "gmail.com")) ((NIL NIL "soknos" "kom.tu-darmstadt.de")) NIL NIL "<dae958070810150952o33603667t2975b6c41f865da8@...>" "<12285785.0.1224180529737.JavaMail.schulte@shanai>") INTERNALDATE "16-Oct-2008 19:19:19 +0200" RFC822.SIZE 4696) A4 OK FETCH completed. This output is exactly the same for my colleague and me. Nevertheless, the MessagingException occurs only on his machine. However there seems to be more than this - while it was sufficient to connect to the INBOX by Store store = session.getStore("imap"); store.connect(); we had to change this to Store store = session.getStore("imap"); store.connect(session.getProperty("mail.imap.host"), session.getProperty("mail.imap.user"), session.getProperty("mail.user.password")); Before this, my colleague was getting an AuthenticationFailedException. Furthermore, while I am able to send messages without any problems, the mails sent by my colleague feature the wrong subject and "From". On the other hand, setText() and setRecipients() work absolutely fine. Here comes the corresponding code: private void sendMail(Session session, String subject, String url, String content, String recipi, boolean attachment) throws MessagingException, AddressException { final Properties props = session.getProperties(); SMTPMessage msg = new SMTPMessage(session); Address[] address = new Address[1]; address[0] = new InternetAddress(props.getProperty("mail.smtp.from")); msg.addFrom(address); msg.setRecipients(javax.mail.Message.RecipientType.TO, recipi); msg.setSubject(subject); msg.setReplyTo(msg.getFrom()); inhalt = inhalt+"\n"+url; msg.setText(inhalt, "UTF-8"); msg.setSentDate(new Date()); Transport tr = session.getTransport("smtp"); tr.connect(props.getProperty("mail.smtp.host"),props.getProperty("mail.smtp.user"), props.getProperty("mail.smtp.password")); msg.saveChanges(); tr.sendMessage(msg, msg.getAllRecipients()); tr.close(); try { saveSentMail(msg); } catch (UnknownHostException e) { // TODO Auto-generated catch block e.printStackTrace(); } } Has anybody ever heard of this? Any help is really appreciated! =========================================================================== To unsubscribe, send email to listserv@... and include in the body of the message "signoff JAVAMAIL-INTEREST". For general help, send email to listserv@... and include in the body of the message "help". |
|
|
Re: javax.mail.MessagingException: Failed to load IMAP envelopeStefan Schulte wrote:
> Hi, > > I've got a funny problem which causes the following exception. It's funny > because the program is running on my own machine, but it is not running on > the machine of a colleague of mine (actually, it is running without problems > on at least two different machines in different networks; the exactly same > problems occur also on at least two different machines). We are running the > exact same program code, the exact same parameters etc. pp. > > javax.mail.MessagingException: Failed to load IMAP envelope > at com.sun.mail.imap.IMAPMessage.loadEnvelope(IMAPMessage.java:1226) > at com.sun.mail.imap.IMAPMessage.getSubject(IMAPMessage.java:331) > at > de.soknos.components.dispatcher.impl.DispatcherImpl.processNewMail(DispatcherImpl.java:218) > at > de.soknos.components.dispatcher.impl.DispatcherImpl.pullMessagesFromDispatcher(DispatcherImpl.java:484) > at > de.soknos.components.dispatcher.impl.DispatcherImpl.main(DispatcherImpl.java:62) > > Actually, this happens when the first message from "INBOX" is fetched, the > corresponding DEBUG-output on the console is: > > A4 FETCH 1 (ENVELOPE INTERNALDATE RFC822.SIZE) > * 1 FETCH (ENVELOPE ("Thu, 16 Oct 2008 19:19:19 +0200" "[PROCESSED] Fwd: > Test Nummero 3 [MESSAGE]" (("Stefan Schulte" NIL "ste.schulte" > "gmail.com")) (("Stefan Schulte" NIL "ste.schulte" "gmail.com")) (("Stefan > Schulte" NIL "ste.schulte" "gmail.com")) ((NIL NIL "soknos" > "kom.tu-darmstadt.de")) NIL NIL > "<dae958070810150952o33603667t2975b6c41f865da8@...>" > "<12285785.0.1224180529737.JavaMail.schulte@shanai>") INTERNALDATE > "16-Oct-2008 19:19:19 +0200" RFC822.SIZE 4696) > A4 OK FETCH completed. > > This output is exactly the same for my colleague and me. Nevertheless, the > MessagingException occurs only on his machine. I don't see anything obviously wrong with the response. Are you sure you're using the same version of JavaMail on all machines? What version information do you see in the beginning of the debug output? What operating systems are used on all machines? Are all machines talking to the same mail server? Is the program running in the same environment on all machines, e.g., running as a standalone program or running in an application server? > However there seems to be more than this - while it was sufficient to > connect to the INBOX by > Store store = session.getStore("imap"); store.connect(); > > we had to change this to > > Store store = session.getStore("imap"); > store.connect(session.getProperty("mail.imap.host"), > session.getProperty("mail.imap.user"), > session.getProperty("mail.user.password")); > > Before this, my colleague was getting an AuthenticationFailedException. To use the connect method with no arguments you have to set up an Authenticator. If you're running in an application server it's possible the server has done that for you. > Furthermore, while I am able to send messages without any problems, the > mails sent by my colleague feature the wrong subject and "From". On the > other hand, setText() and setRecipients() work absolutely fine. Here comes > the corresponding code: > > private void sendMail(Session session, > String subject, String url, String content, > String recipi, boolean attachment) throws MessagingException, > AddressException { > final Properties props = session.getProperties(); > SMTPMessage msg = new SMTPMessage(session); > Address[] address = new Address[1]; > address[0] = new > InternetAddress(props.getProperty("mail.smtp.from")); > msg.addFrom(address); > msg.setRecipients(javax.mail.Message.RecipientType.TO, > recipi); > msg.setSubject(subject); > msg.setReplyTo(msg.getFrom()); > inhalt = inhalt+"\n"+url; > msg.setText(inhalt, "UTF-8"); > msg.setSentDate(new Date()); > Transport tr = session.getTransport("smtp"); > > tr.connect(props.getProperty("mail.smtp.host"),props.getProperty("mail.smtp.user"), > props.getProperty("mail.smtp.password")); > msg.saveChanges(); > tr.sendMessage(msg, msg.getAllRecipients()); > tr.close(); > try { > saveSentMail(msg); > } catch (UnknownHostException e) { > // TODO Auto-generated catch block > e.printStackTrace(); > } > } > > Has anybody ever heard of this? Any help is really appreciated! The code looks fine. The problem is almost certainly in the environment. =========================================================================== To unsubscribe, send email to listserv@... and include in the body of the message "signoff JAVAMAIL-INTEREST". For general help, send email to listserv@... and include in the body of the message "help". |
|
|
AW: javax.mail.MessagingException: Failed to load IMAP envelopeDear Bill,
thank you very much for your quick response. We are running the same version of JavaMail on all machines - and the machines are using the same JRE, however on different operation systems (Linux on the one hand, Windows XP on the other). And all machines are talking to the same mail server and the application is running on all machines as a standalone-application. However, you asked for the beginning of the DEBUG output - on the "faulty" machines, the beginning looks like this: Loading javamail.default.providers from jar:file:/media/hda6/data/workspace-soknos/shared/extlibs/mail.jar!/META -INF/javamail.default.providers DEBUG: loading new provider protocol=imap, className=com.sun.mail.imap.IMAPStore, vendor=Sun Microsystems, Inc, version=null DEBUG: loading new provider protocol=imaps, className=com.sun.mail.imap.IMAPSSLStore, vendor=Sun Microsystems, Inc, version=null DEBUG: loading new provider protocol=smtp, className=com.sun.mail.smtp.SMTPTransport, vendor=Sun Microsystems, Inc, version=null DEBUG: loading new provider protocol=smtps, className=com.sun.mail.smtp.SMTPSSLTransport, vendor=Sun Microsystems, Inc, version=null DEBUG: loading new provider protocol=pop3, className=com.sun.mail.pop3.POP3Store, vendor=Sun Microsystems, Inc, version=null DEBUG: loading new provider protocol=pop3s, className=com.sun.mail.pop3.POP3SSLStore, vendor=Sun Microsystems, Inc, version=null DEBUG: getProvider() returning provider protocol=imap; type=javax.mail.Provider$Type@1a73d3c; class=com.sun.mail.imap.IMAPStore; vendor=Sun Microsystems, Inc DEBUG: mail.imap.fetchsize: 16384 DEBUG: protocolConnect returning false, host=mailserver.kom.e-technik.tu-darmstadt.de, user=soknos@..., password=<null> On my machine, it is "only": DEBUG: setDebug: JavaMail version 1.4.1 DEBUG: getProvider() returning javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Sun Microsystems, Inc] DEBUG: mail.imap.fetchsize: 16384 DEBUG: protocolConnect returning false, host=mailserver.kom.e-technik.tu-darmstadt.de, user=soknos@..., password=<null> This is really weird - as you can see, in the first console snippet, it does not even say something like "setDebug: JavaMail version 1.4.1". And there, the default providers are loaded, while on my machine, the right provider is loaded immediately. Regards Stefan Stefan Schulte wrote: > Hi, > > I've got a funny problem which causes the following exception. It's funny > because the program is running on my own machine, but it is not running on > the machine of a colleague of mine (actually, it is running without problems > on at least two different machines in different networks; the exactly same > problems occur also on at least two different machines). We are running the > exact same program code, the exact same parameters etc. pp. > > javax.mail.MessagingException: Failed to load IMAP envelope > at com.sun.mail.imap.IMAPMessage.loadEnvelope(IMAPMessage.java:1226) > at com.sun.mail.imap.IMAPMessage.getSubject(IMAPMessage.java:331) > at > de.soknos.components.dispatcher.impl.DispatcherImpl.processNewMail(Dispa tcherImpl.java:218) > at > de.soknos.components.dispatcher.impl.DispatcherImpl.pullMessagesFromDisp atcher(DispatcherImpl.java:484) > at > de.soknos.components.dispatcher.impl.DispatcherImpl.main(DispatcherImpl. java:62) > > Actually, this happens when the first message from "INBOX" is fetched, the > corresponding DEBUG-output on the console is: > > A4 FETCH 1 (ENVELOPE INTERNALDATE RFC822.SIZE) > * 1 FETCH (ENVELOPE ("Thu, 16 Oct 2008 19:19:19 +0200" "[PROCESSED] Fwd: > Test Nummero 3 [MESSAGE]" (("Stefan Schulte" NIL "ste.schulte" > "gmail.com")) (("Stefan Schulte" NIL "ste.schulte" "gmail.com")) (("Stefan > Schulte" NIL "ste.schulte" "gmail.com")) ((NIL NIL "soknos" > "kom.tu-darmstadt.de")) NIL NIL > "<dae958070810150952o33603667t2975b6c41f865da8@...>" > "<12285785.0.1224180529737.JavaMail.schulte@shanai>") INTERNALDATE > "16-Oct-2008 19:19:19 +0200" RFC822.SIZE 4696) > A4 OK FETCH completed. > > This output is exactly the same for my colleague and me. Nevertheless, the > MessagingException occurs only on his machine. I don't see anything obviously wrong with the response. Are you sure you're using the same version of JavaMail on all machines? What version information do you see in the beginning of the debug output? What operating systems are used on all machines? Are all machines talking to the same mail server? Is the program running in the same environment on all machines, e.g., running as a standalone program or running in an application server? > However there seems to be more than this - while it was sufficient to > connect to the INBOX by > Store store = session.getStore("imap"); store.connect(); > > we had to change this to > > Store store = session.getStore("imap"); > store.connect(session.getProperty("mail.imap.host"), > session.getProperty("mail.imap.user"), > session.getProperty("mail.user.password")); > > Before this, my colleague was getting an To use the connect method with no arguments you have to set up an Authenticator. If you're running in an application server it's possible the server has done that for you. > Furthermore, while I am able to send messages without any problems, the > mails sent by my colleague feature the wrong subject and "From". On the > other hand, setText() and setRecipients() work absolutely fine. Here comes > the corresponding code: > > private void sendMail(Session session, > String subject, String url, String content, > String recipi, boolean attachment) throws MessagingException, > AddressException { > final Properties props = session.getProperties(); > SMTPMessage msg = new SMTPMessage(session); > Address[] address = new Address[1]; > address[0] = new > InternetAddress(props.getProperty("mail.smtp.from")); > msg.addFrom(address); > msg.setRecipients(javax.mail.Message.RecipientType.TO, > recipi); > msg.setSubject(subject); > msg.setReplyTo(msg.getFrom()); > inhalt = inhalt+"\n"+url; > msg.setText(inhalt, "UTF-8"); > msg.setSentDate(new Date()); > Transport tr = session.getTransport("smtp"); > > mtp.user"), > props.getProperty("mail.smtp.password")); > msg.saveChanges(); > tr.sendMessage(msg, msg.getAllRecipients()); > tr.close(); > try { > saveSentMail(msg); > } catch (UnknownHostException e) { > // TODO Auto-generated catch block > e.printStackTrace(); > } > } > > Has anybody ever heard of this? Any help is really appreciated! The code looks fine. The problem is almost certainly in the environment. =========================================================================== To unsubscribe, send email to listserv@... and include in the body of the message "signoff JAVAMAIL-INTEREST". For general help, send email to listserv@... and include in the body of the message "help". |
|
|
Re: AW: javax.mail.MessagingException: Failed to load IMAP envelopeSchulte, Stefan wrote:
> This is really weird - as you can see, in the first console snippet, it > does not even say something like "setDebug: JavaMail version 1.4.1". And > there, the default providers are loaded, while on my machine, the right > provider is loaded immediately. You may have the same version of JavaMail loaded on both machines, but on the first machine it's finding some other version. What version is in /media/hda6/data/workspace-soknos/shared/extlibs/mail.jar? Check the jre/lib/ext directory on all machines for other versions of mail.jar. (Or any directory pointed to by the java.ext.dirs property.) =========================================================================== To unsubscribe, send email to listserv@... and include in the body of the message "signoff JAVAMAIL-INTEREST". For general help, send email to listserv@... and include in the body of the message "help". |
|
|
AW: AW: javax.mail.MessagingException: Failed to load IMAP envelopeHi Bill,
the only thing we've found was an ant-javamail.jar (see below). But obviously, this jar is not identical with mail.jar as mail.jar is not from apache. Any other ideas? andreas@andreas-laptop:/media/hda6/data/workspace-soknos$ find | grep mail*.jar ./shared/extlibs/.svn/prop-base/mail.jar.svn-base ./shared/extlibs/.svn/text-base/mail.jar.svn-base ./shared/extlibs/mail.jar andreas@andreas-laptop:/usr/lib/jvm/java-6-sun-1.6.0.07$ find | grep mail*.jar andreas@andreas-laptop:/usr/lib/jvm/java-6-sun-1.6.0.07$ andreas@andreas-laptop:/media/hda6/data/eclipse3.4$ find | grep mail*.jar ./eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-javamail.ja r andreas@andreas-laptop:/media/hda6/data/eclipse3.4$ --- andreas@andreas-laptop:/media/hda6/data/eclipse3.4/eclipse/plugins/org.a pache.ant_1.7.0.v200803061910/lib$ mkdir /tmp/ant-javamail andreas@andreas-laptop:/media/hda6/data/eclipse3.4/eclipse/plugins/org.a pache.ant_1.7.0.v200803061910/lib$ cp ant-javamail.jar /tmp/ant-javamail/ andreas@andreas-laptop:/media/hda6/data/eclipse3.4/eclipse/plugins/org.a pache.ant_1.7.0.v200803061910/lib$ cd /tmp/ant-javamail/ andreas@andreas-laptop:/tmp/ant-javamail$ unzip ant-javamail.jar Archive: ant-javamail.jar creating: META-INF/ inflating: META-INF/MANIFEST.MF creating: org/ creating: org/apache/ creating: org/apache/tools/ creating: org/apache/tools/ant/ creating: org/apache/tools/ant/taskdefs/ creating: org/apache/tools/ant/taskdefs/email/ inflating: org/apache/tools/ant/taskdefs/email/MimeMailer $SimpleAuthenticator.class inflating: org/apache/tools/ant/taskdefs/email/MimeMailer $StringDataSource.class inflating: org/apache/tools/ant/taskdefs/email/MimeMailer.class inflating: META-INF/eclipse.inf andreas@andreas-laptop:/tmp/ant-javamail$ =========================================================================== To unsubscribe, send email to listserv@... and include in the body of the message "signoff JAVAMAIL-INTEREST". For general help, send email to listserv@... and include in the body of the message "help". |
|
|
Re: AW: AW: javax.mail.MessagingException: Failed to load IMAP envelopePerhaps libgnumail-java?
libgnumail-java - free implementation of the javamail API On my Ubuntu machine it got installed when I installed Jetty and I got some strange Javamail error in a Webapp. After I removed libgnumail-java everything was working fine. Turned out that because Jetty was using libgnumail-java my Webapp was using it as well instead of Sun Javamail. Martijn On Thu, 2008-10-23 at 10:15 +0200, Schulte, Stefan wrote: > Hi Bill, > > the only thing we've found was an ant-javamail.jar (see below). But > obviously, this jar is not identical with mail.jar as mail.jar is not > from apache. Any other ideas? > > andreas@andreas-laptop:/media/hda6/data/workspace-soknos$ find | grep > mail*.jar ./shared/extlibs/.svn/prop-base/mail.jar.svn-base > ./shared/extlibs/.svn/text-base/mail.jar.svn-base > ./shared/extlibs/mail.jar > > > andreas@andreas-laptop:/usr/lib/jvm/java-6-sun-1.6.0.07$ find | grep > mail*.jar andreas@andreas-laptop:/usr/lib/jvm/java-6-sun-1.6.0.07$ > > andreas@andreas-laptop:/media/hda6/data/eclipse3.4$ find | grep > mail*.jar > ./eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-javamail.ja > r > andreas@andreas-laptop:/media/hda6/data/eclipse3.4$ > > --- > > andreas@andreas-laptop:/media/hda6/data/eclipse3.4/eclipse/plugins/org.a > pache.ant_1.7.0.v200803061910/lib$ mkdir /tmp/ant-javamail > andreas@andreas-laptop:/media/hda6/data/eclipse3.4/eclipse/plugins/org.a > pache.ant_1.7.0.v200803061910/lib$ cp ant-javamail.jar > /tmp/ant-javamail/ > andreas@andreas-laptop:/media/hda6/data/eclipse3.4/eclipse/plugins/org.a > pache.ant_1.7.0.v200803061910/lib$ cd /tmp/ant-javamail/ > andreas@andreas-laptop:/tmp/ant-javamail$ unzip ant-javamail.jar > Archive: ant-javamail.jar > creating: META-INF/ > inflating: META-INF/MANIFEST.MF > creating: org/ > creating: org/apache/ > creating: org/apache/tools/ > creating: org/apache/tools/ant/ > creating: org/apache/tools/ant/taskdefs/ > creating: org/apache/tools/ant/taskdefs/email/ > inflating: org/apache/tools/ant/taskdefs/email/MimeMailer > $SimpleAuthenticator.class > inflating: org/apache/tools/ant/taskdefs/email/MimeMailer > $StringDataSource.class > inflating: org/apache/tools/ant/taskdefs/email/MimeMailer.class > inflating: META-INF/eclipse.inf > andreas@andreas-laptop:/tmp/ant-javamail$ > > =========================================================================== > To unsubscribe, send email to listserv@... and include in the body > of the message "signoff JAVAMAIL-INTEREST". For general help, send email to > listserv@... and include in the body of the message "help". =========================================================================== To unsubscribe, send email to listserv@... and include in the body of the message "signoff JAVAMAIL-INTEREST". For general help, send email to listserv@... and include in the body of the message "help". |
|
|
Re: AW: AW: javax.mail.MessagingException: Failed to load IMAP envelopeSchulte, Stefan wrote:
> Hi Bill, > > the only thing we've found was an ant-javamail.jar (see below). But > obviously, this jar is not identical with mail.jar as mail.jar is not > from apache. Any other ideas? Possibly you have the javax.mail classes in another jar file, e.g., j2ee.jar or javaee.jar. =========================================================================== To unsubscribe, send email to listserv@... and include in the body of the message "signoff JAVAMAIL-INTEREST". For general help, send email to listserv@... and include in the body of the message "help". |
|
|
AW: AW: AW: javax.mail.MessagingException: Failed to load IMAP envelopeHi,
Finally, we identified the problem - indeed, there was another version of Javamail (geronimo-javamail_1.4_spec-1.0-M1.jar) in the classpath. Thanks to everyone who helped to solve this problem. Regards, Stefan -----Ursprüngliche Nachricht----- Von: Martijn Brinkers [mailto:martijn.list@...] Gesendet: Donnerstag, 23. Oktober 2008 14:06 An: Schulte, Stefan Cc: JAVAMAIL-INTEREST@... Betreff: Re: AW: AW: javax.mail.MessagingException: Failed to load IMAP envelope Perhaps libgnumail-java? libgnumail-java - free implementation of the javamail API On my Ubuntu machine it got installed when I installed Jetty and I got some strange Javamail error in a Webapp. After I removed libgnumail-java everything was working fine. Turned out that because Jetty was using libgnumail-java my Webapp was using it as well instead of Sun Javamail. Martijn On Thu, 2008-10-23 at 10:15 +0200, Schulte, Stefan wrote: > Hi Bill, > > the only thing we've found was an ant-javamail.jar (see below). But > obviously, this jar is not identical with mail.jar as mail.jar is not > from apache. Any other ideas? > > andreas@andreas-laptop:/media/hda6/data/workspace-soknos$ find | grep > mail*.jar ./shared/extlibs/.svn/prop-base/mail.jar.svn-base > ./shared/extlibs/.svn/text-base/mail.jar.svn-base > ./shared/extlibs/mail.jar > > > andreas@andreas-laptop:/usr/lib/jvm/java-6-sun-1.6.0.07$ find | grep > mail*.jar andreas@andreas-laptop:/usr/lib/jvm/java-6-sun-1.6.0.07$ > > andreas@andreas-laptop:/media/hda6/data/eclipse3.4$ find | grep > mail*.jar > ./eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib/ant-javamail.ja > r > andreas@andreas-laptop:/media/hda6/data/eclipse3.4$ > > --- > > andreas@andreas-laptop:/media/hda6/data/eclipse3.4/eclipse/plugins/org.a > pache.ant_1.7.0.v200803061910/lib$ mkdir /tmp/ant-javamail > andreas@andreas-laptop:/media/hda6/data/eclipse3.4/eclipse/plugins/org.a > pache.ant_1.7.0.v200803061910/lib$ cp ant-javamail.jar > /tmp/ant-javamail/ > andreas@andreas-laptop:/media/hda6/data/eclipse3.4/eclipse/plugins/org.a > pache.ant_1.7.0.v200803061910/lib$ cd /tmp/ant-javamail/ > andreas@andreas-laptop:/tmp/ant-javamail$ unzip ant-javamail.jar > Archive: ant-javamail.jar > creating: META-INF/ > inflating: META-INF/MANIFEST.MF > creating: org/ > creating: org/apache/ > creating: org/apache/tools/ > creating: org/apache/tools/ant/ > creating: org/apache/tools/ant/taskdefs/ > creating: org/apache/tools/ant/taskdefs/email/ > inflating: org/apache/tools/ant/taskdefs/email/MimeMailer > $SimpleAuthenticator.class > inflating: org/apache/tools/ant/taskdefs/email/MimeMailer > $StringDataSource.class > inflating: org/apache/tools/ant/taskdefs/email/MimeMailer.class > inflating: META-INF/eclipse.inf > andreas@andreas-laptop:/tmp/ant-javamail$ > > =========================================================================== > To unsubscribe, send email to listserv@... and include in the body > of the message "signoff JAVAMAIL-INTEREST". For general help, send email to > listserv@... and include in the body of the message "help". =========================================================================== To unsubscribe, send email to listserv@... and include in the body of the message "signoff JAVAMAIL-INTEREST". For general help, send email to listserv@... and include in the body of the message "help". |
| Free embeddable forum powered by Nabble | Forum Help |