[Patch below for ease of checking and attached as text file for ease of
applying.]
SMTPAppender previously changed the system properties rather than
creating a new Properties object using System.getProperties as a
default. This patch corrects that behaviour.
Jon
--- SMTPAppender.java.orig Wed Sep 5 13:41:49 2001
+++ SMTPAppender.java Wed Sep 5 13:47:22 2001
@@ -84,7 +84,7 @@
recipient, from, etc. */
public
void activateOptions() {
- Properties props = System.getProperties();
+ Properties props = new Properties (System.getProperties());
if (smtpHost != null)
props.put("mail.smtp.host", smtpHost);
--- SMTPAppender.java.orig Wed Sep 5 13:41:49 2001
+++ SMTPAppender.java Wed Sep 5 13:47:22 2001
@@ -84,7 +84,7 @@
recipient, from, etc. */
public
void activateOptions() {
- Properties props = System.getProperties();
+ Properties props = new Properties (System.getProperties());
if (smtpHost != null)
props.put("mail.smtp.host", smtpHost);
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]