%@page contentType="text/html"%>
<%@page trimDirectiveWhitespaces="true"%>
<%@page pageEncoding="UTF-8"%>
<%
String i2pcontextId1 = null;
try {
i2pcontextId1 = (String) session.getAttribute("i2p.contextId");
} catch (IllegalStateException ise) {}
%>
<%
// CSSHelper is also pulled in by css.jsi below...
boolean testIFrame = tester.allowIFrame(request.getHeader("User-Agent"));
boolean embedApp = tester.embedApps();
if (!testIFrame || !embedApp) {
response.setStatus(307);
response.setHeader("Location", "/susimail/");
// force commitment
response.getOutputStream().close();
return;
} else {
%>
<%@include file="css.jsi" %>
<%=intl.title("webmail")%>
<%@include file="summaryajax.jsi" %>
<%@include file="summary.jsi" %>
<%
}
%>