如已有邮箱服务,选custom ,不要选Gmail
IMAP端口为143 protocol tls
SMTP端口25
填好邮箱服务器地址
添加密码插件:编辑
C:\Bitnami\roundcube-1.1.4-1\apps\roundcube\htdocs\config
// List of active plugins (in plugins/ directory)
$config['plugins'] = array(
'archive',
'zipdownload',
'password'
);
拷贝文件并修改
C:\Bitnami\roundcube-1.1.4-1\apps\roundcube\htdocs\plugins\password\config.inc.php.dist为
C:\Bitnami\roundcube-1.1.4-1\apps\roundcube\htdocs\plugins\password\config.inc.php
$config['password_db_dsn'] = 'mysql://username:password@emailServerIP:3306/maildb';
$config['password_query'] = "UPDATE mailbox
SET password=ENCRYPT(%p,concat(_utf8'$1$',right(md5(rand()),8),_utf8'$'))
WHERE username=%u
LIMIT 1
";