Linux与云计算——第二阶段Linux服务器架设
第九章:Mail电子邮件服务器架设—配置基于SSL的邮件服务器以及虚拟域的使用
邮件客户端配置
可以自行选择电子邮件客户端根据服务器的配置进行设置即可。推荐使用foxmail或者outlook等客户端软件。
配置SSL
配置SSL来加密连接。 SMTPS使用端口465/TCP, POP3S使用端口995/TCP, IMAPS使用端口993/TCP.
[1] 创建证书
[2] 给Postfix和Dovecot配置SSL.
[[email protected] ~]# vi /etc/postfix/main.cf
# 在最后添加以下内容
smtpd_use_tls = yes
smtpd_tls_cert_file = /etc/pki/tls/certs/server.crt
smtpd_tls_key_file = /etc/pki/tls/certs/server.key
smtpd_tls_session_cache_database = btree:/etc/postfix/smtpd_scache
[[email protected] ~]# vi /etc/postfix/master.cf
# line 26-28: 取消注释
smtps inet n - n - - smtpd
-o syslog_name=postfix/smtps
-o smtpd_tls_wrappermode=yes
[[email protected] ~]# vi /etc/dovecot/conf.d/10-ssl.conf
# line 8: 修改
ssl = yes
# line 14,15: 指定证书文件
ssl_cert = </etc/pki/tls/certs/server.crt
ssl_key = </etc/pki/tls/certs/server.key
[[email protected] ~]# systemctl restart postfix
[[email protected] ~]# systemctl restart dovecot
[3] 在客户端内选择SMTP和IMAP使用TLS/SSL
Virtual domain
配置Postfix来使用一个虚拟域发送一封和自己起源域不同名字的邮件。
For example,
present domain name example.com
new domain name virtual.host
一个用户 [jeffrey] 有一个邮件地址 [[email protected]],
一个用户 [redhat] 有一个邮件地址 [[email protected]],
用户 [redhat] 也使用相同的名字 for before [@] with [jeffrey].
[1] 配置虚拟域
[[email protected] ~]# vi /etc/postfix/main.cf
# 在文件末尾添加以下部分
virtual_alias_domains = virtual.host
virtual_alias_maps = hash:/etc/postfix/virtual
[[email protected] ~]# vi /etc/postfix/virtual
# 在文件前面添加以下内容
[email protected] redhat
[[email protected] ~]# postmap /etc/postfix/virtual
[[email protected] ~]# systemctl reload postfix