<%= totalDomains %>
总域名数
<%= enabledDomains %> 个启用
<%= totalEmails %>
总邮件数
<%= unreadEmails %> 封未读
<%= totalMailboxes %>
邮箱总数
活跃用户
<%= todayEmails %>
今日邮件
本周 <%= weekEmails %> 封
热门邮箱地址
<% if (popularMailboxes.length === 0) { %>
<% } else { %>
<% popularMailboxes.forEach((item, index) => { %>
<% }) %>
<% } %>
暂无数据
<%= item._id %>
#<%= index + 1 %>
活跃发件人
<% if (topSenders.length === 0) { %>
<% } else { %>
<% topSenders.forEach((sender, index) => { %>
<% }) %>
<% } %>
暂无数据
<%= sender._id %>
<%= sender.count %>
最近活动邮箱
<% if (recentMailboxes.length === 0) { %>
<% } else { %>
<% recentMailboxes.forEach(mailbox => { %>
<% }) %>
<% } %>
暂无活动邮箱
<%= mailbox.fullAddress %>
<%= formatTimeAgo(mailbox.lastActivity) %>
系统信息
| 系统运行时间 | <%= formatUptime(systemStartTime) %> |
| 数据库大小 | 约 <%= Math.round(totalEmails * 0.01) %> MB (估算) |
| 平均每日邮件 | <%= Math.round(totalEmails / 30) %> 封/天 (30天平均) |
| 最活跃域名 | <% if (domainStats.length > 0) { %> <%= domainStats[0]._id %> (<%= domainStats[0].count %> 封邮件) <% } else { %> 暂无数据 <% } %> |