1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
<%--
- 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="org.jivesoftware.util.*,
org.jivesoftware.wildfire.user.*,
java.util.*,
javax.mail.*,
javax.mail.internet.*"
errorPage="error.jsp"
%>
<%@ page import="java.text.SimpleDateFormat"%>
<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c" %>
<%@ taglib uri="http://java.sun.com/jstl/fmt_rt" prefix="fmt" %>
<%-- Define Administration Bean --%>
<jsp:useBean id="webManager" class="org.jivesoftware.util.WebManager" />
<% webManager.init(request, response, session, application, out ); %>
<% // Get paramters
boolean doTest = request.getParameter("test") != null;
boolean cancel = request.getParameter("cancel") != null;
boolean sent = ParamUtils.getBooleanParameter(request,"sent");
boolean success = ParamUtils.getBooleanParameter(request,"success");
String from = ParamUtils.getParameter(request,"from");
String to = ParamUtils.getParameter(request,"to");
String subject = ParamUtils.getParameter(request,"subject");
String body = ParamUtils.getParameter(request,"body");
// Cancel if requested
if (cancel) {
response.sendRedirect("system-email.jsp");
return;
}
// Variable to hold messaging exception, if one occurs
Exception mex = null;
// Validate input
Map<String, String> errors = new HashMap<String, String>();
if (doTest) {
if (from == null) { errors.put("from",""); }
if (to == null) { errors.put("to",""); }
if (subject == null) { errors.put("subject",""); }
if (body == null) { errors.put("body",""); }
EmailService service = EmailService.getInstance();
// Validate host - at a minimum, it needs to be set:
String host = service.getHost();
if (host == null) {
errors.put("host","");
}
// if no errors, continue
if (errors.size() == 0) {
// Create a message
MimeMessage message = service.createMimeMessage();
// Set the date of the message to be the current date
SimpleDateFormat format = new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss Z",
java.util.Locale.US);
format.setTimeZone(JiveGlobals.getTimeZone());
message.setHeader("Date", format.format(new Date()));
// Set to and from.
message.setRecipient(Message.RecipientType.TO, new InternetAddress(to, null));
message.setFrom(new InternetAddress(from, null));
message.setSubject(subject);
message.setText(body);
// Send the message, wrap in a try/catch:
try {
service.sendMessagesImmediately(Collections.singletonList(message));
// success, so indicate this:
response.sendRedirect("system-emailtest.jsp?sent=true&success=true");
return;
}
catch (MessagingException me) {
me.printStackTrace();
mex = me;
}
}
}
// Set var defaults
User user = webManager.getUserManager().getUser("admin");
if (from == null) {
from = user.getEmail();
}
if (to == null) {
to = user.getEmail();
}
if (subject == null) {
subject = "Test email sent via Wildfire";
}
if (body == null) {
body = "This is a test message.";
}
%>
<html>
<head>
<title><fmt:message key="system.emailtest.title"/></title>
<meta name="pageID" content="system-email"/>
</head>
<body>
<script language="JavaScript" type="text/javascript">
var clicked = false;
function checkClick(el) {
if (!clicked) {
clicked = true;
return true;
}
return false;
}
</script>
<p>
<fmt:message key="system.emailtest.info" />
</p>
<% if (JiveGlobals.getProperty("mail.smtp.host") == null) { %>
<div class="jive-error">
<table cellpadding="0" cellspacing="0" border="0">
<tbody>
<tr>
<td class="jive-icon"><img src="images/error-16x16.gif" width="16" height="16" border="0" alt=""></td>
<td class="jive-icon-label">
<fmt:message key="system.emailtest.no_host">
<fmt:param value="<a href=\"system-email.jsp\">"/>
<fmt:param value="</a>"/>
</fmt:message>
</td>
</tr>
</tbody>
</table>
</div>
<% } %>
<% if (doTest || sent) { %>
<% if (success) { %>
<div class="jive-success">
<table cellpadding="0" cellspacing="0" border="0">
<tbody>
<tr>
<td class="jive-icon"><img src="images/success-16x16.gif" width="16" height="16" border="0" alt=""></td>
<td class="jive-icon-label"><fmt:message key="system.emailtest.success" /></td>
</tr>
</tbody>
</table>
</div>
<% } else { %>
<div class="jive-error">
<table cellpadding="0" cellspacing="0" border="0">
<tbody>
<tr><td class="jive-icon"><img src="images/error-16x16.gif" width="16" height="16" border="0" alt=""></td>
<td class="jive-icon-label">
<fmt:message key="system.emailtest.failure" />
<% if (mex != null) { %>
<% if (mex instanceof AuthenticationFailedException) { %>
<fmt:message key="system.emailtest.failure_authentication" />
<% } else { %>
(Message: <%= mex.getMessage() %>)
<% } %>
<% } %>
</td></tr>
</tbody>
</table>
</div>
<% } %>
<br>
<% } %>
<form action="system-emailtest.jsp" method="post" name="f" onsubmit="return checkClick(this);">
<table cellpadding="3" cellspacing="0" border="0">
<tbody>
<tr>
<td>
<fmt:message key="system.emailtest.mail_server" />:
</td>
<td>
<% String host = JiveGlobals.getProperty("mail.smtp.host");
if (host == null) {
%>
<i><fmt:message key="system.emailtest.host_not_set" /></i>
<%
} else {
%>
<%= host %>:<%= JiveGlobals.getIntProperty("mail.smtp.port", 25) %>
<% if (JiveGlobals.getBooleanProperty("mail.smtp.ssl", false)) { %>
(<fmt:message key="system.emailtest.ssl" />)
<% } %>
<% } %>
</td>
</tr>
<tr>
<td>
<fmt:message key="system.emailtest.from" />:
</td>
<td>
<input type="hidden" name="from" value="<%= from %>">
<%= StringUtils.escapeHTMLTags(from) %>
<span class="jive-description">
(<a href="user-edit-form.jsp?username=admin">Update Address</a>)
</span>
</td>
</tr>
<tr>
<td>
<fmt:message key="system.emailtest.to" />:
</td>
<td>
<input type="text" name="to" value="<%= ((to != null) ? to : "") %>"
size="40" maxlength="100">
</td>
</tr>
<tr>
<td>
<fmt:message key="system.emailtest.subject" />:
</td>
<td>
<input type="text" name="subject" value="<%= ((subject != null) ? subject : "") %>"
size="40" maxlength="100">
</td>
</tr>
<tr valign="top">
<td>
<fmt:message key="system.emailtest.body" />:
</td>
<td>
<textarea name="body" cols="45" rows="5" wrap="virtual"><%= body %></textarea>
</td>
</tr>
<tr>
<td colspan="2">
<br>
<input type="submit" name="test" value="<fmt:message key="system.emailtest.send" />">
<input type="submit" name="cancel" value="<fmt:message key="system.emailtest.cancel" />">
</td>
</tr>
</tbody>
</table>
</form>
</body>
</html>