outMailUserSetingGet.jsp 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <%--
  2. time:2012-04-09 13:43:51
  3. --%>
  4. <%@page language="java" pageEncoding="UTF-8"%>
  5. <%@include file="/commons/include/html_doctype.html"%>
  6. <html>
  7. <head>
  8. <title>邮箱明细</title>
  9. <%@include file="/commons/include/getById.jsp" %>
  10. <script type="text/javascript">
  11. //放置脚本
  12. </script>
  13. </head>
  14. <body>
  15. <div class="panel">
  16. <div class="panel-top">
  17. <div class="tbar-title">
  18. <span class="tbar-label">邮箱详细信息</span>
  19. </div>
  20. <c:if test="${canReturn==0}">
  21. <div class="panel-toolbar">
  22. <div class="toolBar">
  23. <div class="group"><a class="link back " href="list.ht"><span></span>返回</a></div>
  24. </div>
  25. </div>
  26. </c:if>
  27. </div>
  28. <div class="panel-body">
  29. <table class="table-detail" cellpadding="0" cellspacing="0" border="0">
  30. <tr>
  31. <th width="20%">账号名称:</th>
  32. <td>${outMailUserSeting.userName}</td>
  33. </tr>
  34. <tr>
  35. <th width="20%">邮箱地址:</th>
  36. <td>${outMailUserSeting.mailAddress}</td>
  37. </tr>
  38. <tr>
  39. <th width="20%">邮箱类型:</th>
  40. <td>${outMailUserSeting.mailType}</td>
  41. </tr>
  42. <tr >
  43. <th width="20%">smtp主机:</th>
  44. <td>${outMailUserSeting.smtpHost}</td>
  45. </tr>
  46. <tr>
  47. <th width="20%">smtp端口:</th>
  48. <td>${outMailUserSeting.smtpPort}</td>
  49. </tr>
  50. <tr <c:if test="${outMailUserSeting.mailType=='imap'}">style="display: none"</c:if>>
  51. <th width="20%">pop主机:</th>
  52. <td>${outMailUserSeting.popHost}</td>
  53. </tr>
  54. <tr <c:if test="${outMailUserSeting.mailType=='imap'}">style="display: none"</c:if>>
  55. <th width="20%">pop端口:</th>
  56. <td>${outMailUserSeting.popPort}</td>
  57. </tr>
  58. <tr <c:if test="${outMailUserSeting.mailType=='pop3'}">style="display: none"</c:if>>
  59. <th width="20%">imap主机:</th>
  60. <td>${outMailUserSeting.imapHost}</td>
  61. </tr>
  62. <tr <c:if test="${outMailUserSeting.mailType=='pop3'}">style="display: none"</c:if>>
  63. <th width="20%">imap端口:</th>
  64. <td>${outMailUserSeting.imapPort}</td>
  65. </tr>
  66. <tr>
  67. <th width="20%">是否默认:</th>
  68. <td>
  69. <c:choose>
  70. <c:when test="${outMailUserSeting.isDefault==1}">是</c:when>
  71. <c:otherwise>否</c:otherwise>
  72. </c:choose>
  73. </td>
  74. </tr>
  75. </table>
  76. </div>
  77. </div>
  78. </body>
  79. </html>