updated with minor fix

master
Massimiliano Assante 4 years ago
parent 3f8074506a
commit 29b18bd752

@ -41,11 +41,14 @@ public class MailForm extends MVCPortlet {
HttpServletRequest request = PortalUtil.getHttpServletRequest(actionRequest); HttpServletRequest request = PortalUtil.getHttpServletRequest(actionRequest);
String hostname = PortalUtil.getHost(actionRequest); String hostname = PortalUtil.getHost(actionRequest);
System.out.println("hostname to split:" + hostname); System.out.println("hostname to split:" + hostname);
String[] splits = hostname.split("www.");
String emailAddress = "info@d4science.org"; String emailAddress = "info@d4science.org";
if (splits.length > 1) if (hostname.equalsIgnoreCase("gcube-system.org")) {
emailAddress = "info@"+ hostname.split("www.")[1]; emailAddress = "info@gcube-system.org";
} else {
String[] splits = hostname.split("www.");
if (splits.length > 1)
emailAddress = "info@"+ hostname.split("www.")[1];
}
try { try {
/** /**
* This is the actual code which validate captcha data entered by user. * This is the actual code which validate captcha data entered by user.
@ -59,7 +62,7 @@ public class MailForm extends MVCPortlet {
String bodyTextHTML = "<p>From: " + name + "</p>"; String bodyTextHTML = "<p>From: " + name + "</p>";
bodyTextHTML += "<p>Email: " + email + "</p>"; bodyTextHTML += "<p>Email: " + email + "</p>";
bodyTextHTML += "<p>Message:</p><p> " + message + "</p>"; bodyTextHTML += "<p>Message:</p><p> " + message + "</p>";
String validEmail = "info@d4science.org"; String validEmail = "info@d4science.org";
//fallback //fallback
if (isValidEmailAddress(emailAddress)) { if (isValidEmailAddress(emailAddress)) {

Loading…
Cancel
Save