postfix邮件系统之imap配置
安装
1 | # apt-get install courier-imap courier-authlib-mysql |
配置
编辑/etc/courier/authdaemonrc
1 | ... |
编辑/etc/courier/authmysqlrc,内容如下:
1 | MYSQL_SERVER localhost |
SSL/TLS加密
未启用SSL/TLS加密时,客户端与imap服务器的所有通讯都是以明文传输的,包括认证用户名和密码。因为如果需要安全的imap服务,则需要启用SSL/TLS加密。
安装courier-imap-ssl
1 | # apt-get install courier-imap-ssl |
安装过程中为会localhost自签一对证书,放置在/etc/courier/imapd.pem文件中,如果正式使用,最好还是去申请CA签署的证书。
为imap服务的域名imap.openwares.net生成自签证书:
编辑/etc/courier/imapd.cnf:
1 | CN=imap.openwares.net #CN为Canonical Name缩写 |
删除掉安装时为localhost自签的证书
1 | # rm -f /etc/courier/imapd.pem |
重新为imap.openwares.net生成证书
1 | # mkimapdcert |
重新启动ssl imapd
1 | # /etc/init.d/courier-imap-ssl restart |
将未加密imap服务删除
1 | # /etc/init.d/courier-imap stop |
未启用SSL/TLS加密的imapd使用知名端口143,启用加密后imapd使用知名端口993。
===
[erq]