> java.lang.SecurityException: Access to default session denied See the JavaDocs for javax.mail.Session.getDefaultInstance(Properties, Authenticator). That error message comes from inconsistent use of an Authenticator with the default session.
http://java.sun.com/products/javamail/1.3/docs/javadocs/javax/mail/Session.h tml You probably don't want to use the default session at all in a container environment. Create and use a session. --- Noel --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
