SusiMail: Set no-cache headers

This commit is contained in:
zzz
2018-02-24 17:10:56 +00:00
parent 005f73729e
commit 622c6801ae

View File

@ -2114,6 +2114,9 @@ public class WebMail extends HttpServlet
}
}
response.setHeader("Pragma", "no-cache");
response.setHeader("Cache-Control","no-cache");
//// Begin output
PrintWriter out = response.getWriter();