主题: iRedmail 0.9.5 Roundcube网页前端用户无法自助修改密码

==== ==== 必填信息。没有填写将不予回复 ====
- iRedMail 版本号:0.9.5
- 使用哪个数据库存储用户帐号(OpenLDAP,MySQL,PostgreSQL):MySQL
- 使用的 Linux/BSD 发行版名称及版本号:CentOS6
- 与您的问题相关的日志信息:
====

用户自己修改密码提示错误,错误提示:无法保存新密码,缺少加密功能


从论坛其他主题搜索,说给roundcube赋予权限即可。

但自己已经添加了所有权后,还是不能修改密码,怎么解决?

mysql>
mysql>
mysql> grant all on *.* to vmail@'%';
Query OK, 0 rows affected (0.00 sec)

mysql>
mysql>
mysql> grant all on *.* to roundcube@'%';
Query OK, 0 rows affected (0.00 sec)

mysql>
mysql>
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

mysql>
mysql>

回复: iRedmail 0.9.5 Roundcube网页前端用户无法自助修改密码

*) 打开 /etc/php.ini,找到参数 'disable_functions =',去掉 popen 和 openlog。
*) 安装软件包:mcrypt。

yum -y install mcrypt

*) 重启 Apache 或 php-fpm 服务即可。

回复: iRedmail 0.9.5 Roundcube网页前端用户无法自助修改密码

更新:已修正并重新打包了 iRedMail-0.9.5

回复: iRedmail 0.9.5 Roundcube网页前端用户无法自助修改密码

感谢!