NIHVIVO-1786 If no Vitro.smtphost, write messages to the log instead of to System.out
This commit is contained in:
parent
72fe7b1a42
commit
6ffe9daa64
2 changed files with 15 additions and 38 deletions
|
@ -2,9 +2,7 @@
|
||||||
|
|
||||||
package edu.cornell.mannlib.vitro.webapp.controller;
|
package edu.cornell.mannlib.vitro.webapp.controller;
|
||||||
|
|
||||||
import java.io.FileWriter;
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.PrintWriter;
|
|
||||||
import java.util.Calendar;
|
import java.util.Calendar;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
@ -25,15 +23,13 @@ import javax.servlet.http.HttpServletResponse;
|
||||||
|
|
||||||
import org.apache.commons.logging.Log;
|
import org.apache.commons.logging.Log;
|
||||||
import org.apache.commons.logging.LogFactory;
|
import org.apache.commons.logging.LogFactory;
|
||||||
import org.apache.log4j.Logger;
|
|
||||||
|
|
||||||
|
|
||||||
import edu.cornell.mannlib.vitro.webapp.ConfigurationProperties;
|
import edu.cornell.mannlib.vitro.webapp.ConfigurationProperties;
|
||||||
import edu.cornell.mannlib.vitro.webapp.beans.Portal;
|
import edu.cornell.mannlib.vitro.webapp.beans.Portal;
|
||||||
import edu.cornell.mannlib.vitro.webapp.dao.UserDao;
|
import edu.cornell.mannlib.vitro.webapp.dao.UserDao;
|
||||||
|
|
||||||
public class MailUsersServlet extends VitroHttpServlet {
|
public class MailUsersServlet extends VitroHttpServlet {
|
||||||
//private static final Logger LOG = Logger.getLogger(ContactMailServlet.class);
|
private static final Log log = LogFactory.getLog(MailUsersServlet.class);
|
||||||
|
|
||||||
public static HttpServletRequest request;
|
public static HttpServletRequest request;
|
||||||
public static HttpServletRequest response;
|
public static HttpServletRequest response;
|
||||||
|
@ -55,9 +51,9 @@ public class MailUsersServlet extends VitroHttpServlet {
|
||||||
private String getSmtpHostFromProperties() {
|
private String getSmtpHostFromProperties() {
|
||||||
String host = ConfigurationProperties.getProperty("Vitro.smtpHost");
|
String host = ConfigurationProperties.getProperty("Vitro.smtpHost");
|
||||||
if (host != null && !host.equals("")) {
|
if (host != null && !host.equals("")) {
|
||||||
//LOG.info("Found Vitro.smtpHost value of " + host);
|
log.debug("Found Vitro.smtpHost value of " + host);
|
||||||
} else {
|
} else {
|
||||||
System.out.println("No Vitro.smtpHost specified");
|
log.warn("No Vitro.smtpHost specified");
|
||||||
}
|
}
|
||||||
return (host != null && host.length() > 0) ? host : null;
|
return (host != null && host.length() > 0) ? host : null;
|
||||||
}
|
}
|
||||||
|
@ -187,7 +183,7 @@ public class MailUsersServlet extends VitroHttpServlet {
|
||||||
try {
|
try {
|
||||||
// Construct the message
|
// Construct the message
|
||||||
MimeMessage msg = new MimeMessage( s );
|
MimeMessage msg = new MimeMessage( s );
|
||||||
//System.out.println("trying to send message from servlet");
|
log.debug("trying to send message from servlet");
|
||||||
|
|
||||||
// Set the from address
|
// Set the from address
|
||||||
msg.setFrom( new InternetAddress( webuseremail ));
|
msg.setFrom( new InternetAddress( webuseremail ));
|
||||||
|
@ -211,7 +207,7 @@ public class MailUsersServlet extends VitroHttpServlet {
|
||||||
// set the Date: header
|
// set the Date: header
|
||||||
msg.setSentDate( new Date() );
|
msg.setSentDate( new Date() );
|
||||||
|
|
||||||
//System.out.println("sending from servlet");
|
log.debug("sending from servlet");
|
||||||
|
|
||||||
//if (!probablySpam)
|
//if (!probablySpam)
|
||||||
Transport.send( msg ); // try to send the message via smtp - catch error exceptions
|
Transport.send( msg ); // try to send the message via smtp - catch error exceptions
|
||||||
|
@ -219,20 +215,13 @@ public class MailUsersServlet extends VitroHttpServlet {
|
||||||
|
|
||||||
} catch (AddressException e) {
|
} catch (AddressException e) {
|
||||||
status = "Please supply a valid email address.";
|
status = "Please supply a valid email address.";
|
||||||
System.out.println("Error - status is " + status);
|
log.debug("Error - status is " + status);
|
||||||
//outFile.println( status );
|
|
||||||
//outFile.println( e.getMessage() );
|
|
||||||
} catch (SendFailedException e) {
|
} catch (SendFailedException e) {
|
||||||
status = "The system was unable to deliver your mail. Please try again later. [SEND FAILED]";
|
status = "The system was unable to deliver your mail. Please try again later. [SEND FAILED]";
|
||||||
System.out.println("Error - status is " + status);
|
log.error("Error - status is " + status);
|
||||||
//outFile.println( status );
|
|
||||||
//outFile.println( e.getMessage() );
|
|
||||||
} catch (MessagingException e) {
|
} catch (MessagingException e) {
|
||||||
status = "The system was unable to deliver your mail. Please try again later. [MESSAGING]";
|
status = "The system was unable to deliver your mail. Please try again later. [MESSAGING]";
|
||||||
System.out.println("Error - status is " + status);
|
log.error("Error - status is " + status, e);
|
||||||
//outFile.println( status );
|
|
||||||
//outFile.println( e.getMessage() );
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//outFile.flush();
|
//outFile.flush();
|
||||||
|
|
|
@ -2,34 +2,24 @@
|
||||||
|
|
||||||
package edu.cornell.mannlib.vitro.webapp.utils;
|
package edu.cornell.mannlib.vitro.webapp.utils;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.File;
|
|
||||||
import java.io.FileInputStream;
|
|
||||||
import java.io.InputStream;
|
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
import java.util.Properties;
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
import java.util.Properties;
|
||||||
|
|
||||||
import javax.mail.Message;
|
import javax.mail.Message;
|
||||||
import javax.mail.Session;
|
import javax.mail.Session;
|
||||||
import javax.mail.Transport;
|
import javax.mail.Transport;
|
||||||
import javax.mail.internet.AddressException;
|
|
||||||
import javax.mail.internet.InternetAddress;
|
import javax.mail.internet.InternetAddress;
|
||||||
import javax.mail.internet.MimeMessage;
|
import javax.mail.internet.MimeMessage;
|
||||||
import javax.servlet.ServletContext;
|
|
||||||
|
|
||||||
import org.apache.commons.logging.Log;
|
import org.apache.commons.logging.Log;
|
||||||
import org.apache.commons.logging.LogFactory;
|
import org.apache.commons.logging.LogFactory;
|
||||||
import org.joda.time.format.DateTimeFormatter;
|
|
||||||
import org.joda.time.format.ISODateTimeFormat;
|
|
||||||
|
|
||||||
import com.hp.hpl.jena.rdf.model.Property;
|
|
||||||
import com.hp.hpl.jena.rdf.model.ResourceFactory;
|
|
||||||
|
|
||||||
import edu.cornell.mannlib.vitro.webapp.ConfigurationProperties;
|
import edu.cornell.mannlib.vitro.webapp.ConfigurationProperties;
|
||||||
import edu.cornell.mannlib.vitro.webapp.dao.VitroVocabulary;
|
|
||||||
import fedora.client.FedoraClient;
|
|
||||||
|
|
||||||
public class MailUtil {
|
public class MailUtil {
|
||||||
|
private static final Log log = LogFactory.getLog(MailUtil.class);
|
||||||
|
|
||||||
private String smtpHost = null;
|
private String smtpHost = null;
|
||||||
public MailUtil(){
|
public MailUtil(){
|
||||||
smtpHost = getSmtpHostFromProperties();
|
smtpHost = getSmtpHostFromProperties();
|
||||||
|
@ -44,8 +34,7 @@ public class MailUtil {
|
||||||
|
|
||||||
int recipientCount = (deliverToArray == null) ? 0 : deliverToArray.size();
|
int recipientCount = (deliverToArray == null) ? 0 : deliverToArray.size();
|
||||||
if (recipientCount == 0) {
|
if (recipientCount == 0) {
|
||||||
//log.error("recipientCount is 0 when DeliveryType specified as \""+formType+"\"");
|
log.error(
|
||||||
throw new Error(
|
|
||||||
"To establish the Contact Us mail capability the system administrators must "
|
"To establish the Contact Us mail capability the system administrators must "
|
||||||
+ "specify at least one email address in the current portal.");
|
+ "specify at least one email address in the current portal.");
|
||||||
}
|
}
|
||||||
|
@ -74,7 +63,7 @@ public class MailUtil {
|
||||||
msg.setSentDate( new Date() );
|
msg.setSentDate( new Date() );
|
||||||
Transport.send( msg ); // try to send the message via smtp - catch error exceptions
|
Transport.send( msg ); // try to send the message via smtp - catch error exceptions
|
||||||
} catch(Exception ex) {
|
} catch(Exception ex) {
|
||||||
System.out.println("Exception sending message :" + ex.getMessage());
|
log.error("Exception sending message :" + ex.getMessage(), ex);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -88,10 +77,9 @@ public class MailUtil {
|
||||||
private String getSmtpHostFromProperties() {
|
private String getSmtpHostFromProperties() {
|
||||||
String host = ConfigurationProperties.getProperty("Vitro.smtpHost");
|
String host = ConfigurationProperties.getProperty("Vitro.smtpHost");
|
||||||
if (host != null && !host.equals("")) {
|
if (host != null && !host.equals("")) {
|
||||||
//System.out.println("Found Vitro.smtpHost value is " + host);
|
log.debug("Found Vitro.smtpHost value of " + host);
|
||||||
//LOG.info("Found Vitro.smtpHost value of " + host);
|
|
||||||
} else {
|
} else {
|
||||||
System.out.println("No Vitro.smtpHost specified");
|
log.error("No Vitro.smtpHost specified");
|
||||||
}
|
}
|
||||||
return (host != null && host.length() > 0) ? host : null;
|
return (host != null && host.length() > 0) ? host : null;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue