From a8992006fc01a9e3c0a2dc3818e0f0f9e244a4c1 Mon Sep 17 00:00:00 2001 From: Nuno Taborda Date: Fri, 20 Feb 2009 18:37:55 +0000 Subject: [PATCH] Working implementation of every digest needed for LDAP servers git-svn-id: https://svn.coded.pt/svn/SIPRP@943 bb69d46d-e84e-40c8-a05a-06db0d633741 --- .../analiseacidentestrabalho/AnaliseAcidenteTrabalho.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/trunk/AnaliseAcidentesTrabalho/src/java/analiseacidentestrabalho/AnaliseAcidenteTrabalho.java b/trunk/AnaliseAcidentesTrabalho/src/java/analiseacidentestrabalho/AnaliseAcidenteTrabalho.java index 8e27c573..ed8e506e 100644 --- a/trunk/AnaliseAcidentesTrabalho/src/java/analiseacidentestrabalho/AnaliseAcidenteTrabalho.java +++ b/trunk/AnaliseAcidentesTrabalho/src/java/analiseacidentestrabalho/AnaliseAcidenteTrabalho.java @@ -14256,8 +14256,8 @@ public class AnaliseAcidenteTrabalho extends AbstractPageBean { public class SMTPAuthenticator extends Authenticator { public PasswordAuthentication getPasswordAuthentication() { - String username = "lluis"; - String password = "654321"; + String username = "acidentes.auchan"; + String password = "47Ju6Vb"; return new PasswordAuthentication(username, password); } } @@ -14268,8 +14268,8 @@ public class AnaliseAcidenteTrabalho extends AbstractPageBean { props.put("mail.smtp.host", "mail2.evolute.pt"); props.put("mail.from", emailFrom); props.put("mail.smtp.auth", "true"); - props.put("mail.smtp.user", "lluis"); - props.put("mail.smtp.password", "654321"); + props.put("mail.smtp.user", "acidentes.auchan"); + props.put("mail.smtp.password", "47Ju6Vb"); // Session session1 = Session.getInstance(props); Authenticator auth = new SMTPAuthenticator(); Session session = Session.getDefaultInstance(props, auth);