system-email.jsp 6 KB
Newer Older
1 2 3 4 5 6 7 8
<%--
  - Copyright (C) 2005 Jive Software. All rights reserved.
  -
  - This software is published under the terms of the GNU Public License (GPL),
  - a copy of which is included in this distribution.
--%>

<%@ page import="java.util.*,
9
				 org.jivesoftware.util.*"
10 11 12 13 14 15
    errorPage="error.jsp"
%>

<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c" %>
<%@ taglib uri="http://java.sun.com/jstl/fmt_rt" prefix="fmt" %>

16
<%
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
    // get parameters
    String host = ParamUtils.getParameter(request,"host");
    int port = ParamUtils.getIntParameter(request,"port",0);
    String username = ParamUtils.getParameter(request,"server_username");
    String password = ParamUtils.getParameter(request,"server_password");
    boolean ssl = ParamUtils.getBooleanParameter(request,"ssl");
    boolean save = request.getParameter("save") != null;
    boolean test = request.getParameter("test") != null;
    boolean success = ParamUtils.getBooleanParameter(request,"success");
    boolean debug = ParamUtils.getBooleanParameter(request, "debug");

    // Handle a test request
    if (test) {
        response.sendRedirect("system-emailtest.jsp");
        return;
    }

    EmailService service = EmailService.getInstance();
    // Save the email settings if requested
    Map errors = new HashMap();
    if (save) {
        if (host != null) {
            service.setHost(host);
        }
        else {
            errors.put("host","");
        }
        if (port > 0) {
            service.setPort(port);
        }
        else {
            // Default to port 25.
            service.setPort(25);
        }
        service.setUsername(username);
52 53 54 55 56 57 58 59 60 61 62 63 64
        // Get hash values of existing password and new one
        String existingHashPassword = "";
        String newHashPassword = "";
        if (service.getPassword() != null) {
            existingHashPassword = StringUtils.hash(service.getPassword());
        }
        if (password != null) {
            newHashPassword = StringUtils.hash(password);
        }
        // Change password if hash values are different
        if (!existingHashPassword.equals(newHashPassword)) {
            service.setPassword(password);
        }
65 66 67 68
        service.setDebugEnabled(debug);
        service.setSSLEnabled(ssl);

        if (errors.size() == 0) {
69 70
            // Set property to specify email is configured
            JiveGlobals.setProperty("mail.configured", "true");
71 72 73 74 75 76 77 78 79 80 81 82
            response.sendRedirect("system-email.jsp?success=true");
        }
    }

    host = service.getHost();
    port = service.getPort();
    username = service.getUsername();
    password = service.getPassword();
    ssl = service.isSSLEnabled();
    debug = service.isDebugEnabled();
%>

83 84 85 86 87 88
<html>
    <head>
        <title><fmt:message key="system.email.title"/></title>
        <meta name="pageID" content="system-email"/>
    </head>
    <body>
89 90 91 92 93 94 95 96 97 98 99

<p>
<fmt:message key="system.email.info" />
</p>

<%  if ("true".equals(request.getParameter("success"))) { %>

    <div class="jive-success">
    <table cellpadding="0" cellspacing="0" border="0">
    <tbody>
        <tr>
100
        	<td class="jive-icon"><img src="images/success-16x16.gif" width="16" height="16" border="0" alt=""></td>
101 102 103 104 105 106 107 108 109 110 111 112 113 114
        	<td class="jive-icon-label"><fmt:message key="system.email.update_success" /></td>
        </tr>
    </tbody>
    </table>
    </div>

<%  } %>

<%  if (errors.size() > 0) { %>

    <div class="jive-error">
    <table cellpadding="0" cellspacing="0" border="0">
    <tbody>
        <tr>
115
        	<td class="jive-icon"><img src="images/error-16x16.gif" width="16" height="16" border="0" alt=""></td>
116 117 118 119 120 121 122 123 124 125
        	<td class="jive-icon-label"><fmt:message key="system.email.update_failure" /></td>
        </tr>
    </tbody>
    </table>
    </div>

<%	} %>

<p>

126
<!-- BEGIN SMTP settings -->
127 128
<form action="system-email.jsp" name="f" method="post">

129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205
	<div class="jive-contentBoxHeader">
		<fmt:message key="system.email.name" />
	</div>
	<div class="jive-contentBox">
		<table width="80%" cellpadding="3" cellspacing="0" border="0">
		<tr>
			<td width="30%" nowrap>
				<fmt:message key="system.email.mail_host" />:
			</td>
			<td nowrap>
				<input type="text" name="host" value="<%= (host != null)?host:"" %>" size="40" maxlength="150">
			</td>
		</tr>

		<%  if (errors.containsKey("host")) { %>

			<tr>
				<td nowrap>
					&nbsp;
				</td>
				<td nowrap class="jive-error-text">
					<fmt:message key="system.email.valid_host_name" />
				</td>
			</tr>

		<%  } %>

		<tr>
			<td nowrap>
				<fmt:message key="system.email.server_port" />:
			</td>
			<td nowrap>
				<input type="text" name="port" value="<%= (port > 0) ? String.valueOf(port) : "" %>" size="10" maxlength="15">
			</td>
		</tr>
		<tr>
			<td nowrap>
				<fmt:message key="system.email.mail_debugging" />:
			</td>
			<td nowrap>
				<input type="radio" name="debug" value="true"<%= (debug ? " checked" : "") %> id="rb01"> <label for="rb01">On</label>
				&nbsp;
				<input type="radio" name="debug" value="false"<%= (debug ? "" : " checked") %> id="rb02"> <label for="rb02">Off</label>
				&nbsp; (<fmt:message key="system.email.restart_possible" />)
			</td>
		</tr>

		<%-- spacer --%>
		<tr><td colspan="2">&nbsp;</td></tr>

		<tr>
			<td nowrap>
				<fmt:message key="system.email.server_username" />:
			</td>
			<td nowrap>
				<input type="text" name="server_username" value="<%= (username != null) ? username : "" %>" size="40" maxlength="150">
			</td>
		</tr>
		<tr>
			<td nowrap>
				<fmt:message key="system.email.server_password" />:
			</td>
			<td nowrap>
				<input type="password" name="server_password" value="<%= (password != null) ? StringUtils.hash(password) : "" %>" size="40" maxlength="150">
			</td>
		</tr>

		<tr>
			<td nowrap>
				<fmt:message key="system.email.ssl" />:
			</td>
			<td nowrap>
				<input type="checkbox" name="ssl"<%= (ssl) ? " checked" : "" %>>
			</td>
		</tr>
		</table>
	</div>
206 207 208 209

<input type="submit" name="save" value="<fmt:message key="system.email.save" />">
<input type="submit" name="test" value="<fmt:message key="system.email.send_test" />">
</form>
210
<!-- END SMTP settings -->
211

212
</body>
213
</html>