搭建好的邮件系统,如果是第一种模式是没有批量改密码的。第二种客户端模式是可以直接在客户端里改的。下面看第一种模式如何批量改密码。
1. 首先打开数据库管理工具Mysql-front
2. 进入管理工具中的语句编辑
语句为: update hm_accounts set accountpwencryption=0,accountpassword='这里是密码'
3. 改好语句后点执行按钮,底部可看到执行结果
如果是想改部分段帐号的密码,则语句可以指定帐号的范围:
update hm_accounts set accountpwencryption=0,accountpassword='111' where accountid between 起帐号编号 and 结束帐号编号