Centos7+Postfix+Dovecot实现内网邮件收发
1. 前期准备:
主机:CentOS release 7.6.1810 (Core) #安装时选择邮件服务器
IP:192.168.71.108 #示例
本地yum源 #因为是内网,所以建议用镜像搭建本地yum源
2. 基础环境配置
关闭selinux:
sed –I ‘s/enforcing/disabled/g’ /etc/selinux/config
防火墙等配置:
firewall-cmd –add-port=’110/tcp’ –permanent
firewall-cmd –add-port=’25/tcp’ –permanent
或直接关闭防火墙,因为是内网,也不会有安全问题
systemctl start firewalld.service
主机名配置:
重启系统以使上述配置生效
shutdown -r now
3. Postfix安装与配置
3.1. 安装postfix
因为安装centos时选择的是邮件系统,所以检查是否自带postfix服务,如果没带则可通过本地yum源安装:yum -y insatll postfix --nogpgcheck
3.2. 配置postfix
[root@mail ~]# vim /etc/postfix/main.cf
- myhostname =mail.yzp.com #定义主机名
- mydomain =yzp.com #定义域名
- myorigin =$mydomain #定义组织域
- 我们需要在mydestination的值后面添加 $mydomain ,
- 如果不添加的话,收件人的地址会有问题,如果添加后,用户发送邮件直接会是xx@yzp.com
- 取消注释 #local_recipient_maps =
3.3. 启动和检查postfix
[root@mail ~]# systemctl start postfix.service
[root@mail ~]# systemctl enable postfix.service
[root@mail ~]# netstat -nltp
4. dovecot安装与配置
4.1. 安装dovecot
[root@mail ~]# yum -y install dovecot --nogpgcheck
4.2. 配置dovecot
接下来我们查看dovecot的默认配置文件
[root@mail ~]# cat /etc/dovecot/dovecot.conf
我们看见以下include可以包含的配置文件路径,在该路径下的*.conf文件都会生效
4.2.1. vim /etc/dovecot/dovecot.conf启用协议以下协议及监听
protocols = imap pop3 lmtp
#启用端口监听
listen = *,::
4.2.2. vim /etc/dovecot/conf.d/10-auth.conf设置如下参数
vim /etc/dovecot/conf.d/10-auth.conf
disable_plaintext_auth = no
auth_mechanisms = plain login
!include auth-system.conf.ext
4.2.3. vim /etc/dovecot/conf.d/10-ssl.conf禁用ssl认证
vim /etc/dovecot/conf.d/10-ssl.conf
ssl = no
4.2.4. vim /etc/dovecot/conf.d/10-logging.conf启用dovecot的日志
vim /etc/dovecot/conf.d/10-logging.conf
添加
info_log_path = /var/log/dovecot_info.log
debug_log_path = /var/log/dovecot_debug.log
4.3. 启动和检查dovecot
[root@mail ~]# systemctl start dovecot.service
[root@mail ~]# systemctl enable dovecot.service
[root@mail ~]# netstat -nltp | grep dovecot
5. 创建测试账户与测试邮件收发通信
5.1. 创建两个测试账户
[root@mail ~]# useradd test1
[root@mail ~]# passwd test1
[root@mail ~]# useradd test2
[root@mail ~]# passwd test2
5.2. 测试110端口:收邮件端口
[root@mail ~]# telnet 192.168.71.108 110
Trying 192.168.71.108...
Connected to 192.168.71.108.
Escape character is '^]'.
+OK [XCLIENT] Dovecot ready.
user test1
+OK
pass 111111
+OK Logged in.
-ERR [SYS/PERM] Permission denied
Connection closed by foreign host.
我们查看log
[root@mail ~]# cd /var/log/
[root@mail log]# tailf maillog
我们切换到刚才的用户:
[test1@mail ~]$ su - test1
密码:
[test2@mail ~]$ mkdir -p ~/mail/.imap/INBOX
[test1@mail ~]$ su - test2
密码:
[test2@mail ~]$ mkdir -p ~/mail/.imap/INBOX
再次测试110端口,发现测试通过了
[root@mail ~]# telnet 192.168.71.108 110
Trying 192.168.71.108...
Connected to 192.168.71.108.
Escape character is '^]'.
+OK [XCLIENT] Dovecot ready.
user test1
+OK
pass 111111
+OK Logged in.
quit
+OK Logging out.
Connection closed by foreign host.
5.3. 测试25端口:发邮件端口
[root@mail ~]# telnet 192.168.71.108 25
Trying 192.168.71.108...
Connected to 192.168.71.108.
Escape character is '^]'.
220 mail.yzp.com ESMTP unkown
mail from:test1@yzp.com
250 2.1.0 Ok
rcpt to:test2@yzp.com
250 2.1.5 Ok
data
354 End data with <CR><LF>.<CR><LF>
.
250 2.0.0 Ok: queued as 338CE61533C9
quit
221 2.0.0 Bye
Connection closed by foreign host.
5.4. 测试上述查收上述test1发给test2的邮件
6. 同局域网内的windows电脑配置foxmail测试邮件收发
6.1. 配置新建账号
6.2. 互相收发邮件
收发测试通过,至此,环境搭建通过。
7. 检查邮件存储位置
[root@mail postfix]# cat /etc/dovecot/conf.d/10-mail.conf | grep mail_location
# path given in the mail_location setting.
# mail_location = maildir:~/Maildir
mail_location = mbox:~/mail:INBOX=/var/mail/%u
# mail_location = mbox:/var/mail/%d/%1n/%n:INDEX=/var/indexes/%d/%1n/%n
#mail_location =
# mail_location, which is also the default for it.
[root@mail postfix]# cd /var/mail/
Centos7+Postfix+Dovecot实现内网邮件收发的更多相关文章
- #centos7 创建内网yum源 OpenStack源部署
#centos7 创建内网yum源#centos7 自动化安装 本地 内网 web源创建.更新 createrepo http OpenStack源部署 Elven原创 http://www.cnbl ...
- centos7内网源站建设
centos7内网源站建设 1.部署环境: 系统:Centos7 x86_64 应用服务:nginx.createrepo.reposync 镜像源:https://mirrors.aliyun.co ...
- 企业内部在centos7.2系统中必杀技NTP时间服务器及内网服务器时间同步(windows和linux客户端同步)
网络时间协议NTP(Network Time Protocol)是用于互联网中时间同步的标准互联网协议.NTP的用途是把计算机的时间同步到某些时间标准.目前采用的时间标准是世界协调时UTC(Unive ...
- 云端搭建内网局域网+NAT冗余上网:vps-centos6.10 +pptp client +2个ros 实现默认走pptp上网,万一pptp断了,走另外一个ros路由+centos7补充了下
介绍下环境: 1.ROS1也是PPTP SERVER,IP为172.16.22.3/24,pptp pool为172.16.23.0/24,pptp的默认帐号是111,密码是123 2.ROS2的IP ...
- centos7 virtualbox使用internal network 内网模式
1)打开对应虚拟机的Settings,点开Network, 2)Adapter1如果已经选了挂到Bridged Adapter,则点开Adapter2, 3)选择挂到 Internal Network ...
- Centos7.2内网环境安装MySQL5.7.24
1.配置本地yum源 内网环境,首先需要配置本地yum源,以解决MySQL的依赖安装,具体参考该文:点击打开 2.查看服务器环境 uname -a 3.去官网下载MySQL安装包 MySQL官网网址: ...
- Docker 18.03 Centos7.6 安装 内网
首先访问https://download.docker.com/linux/centos/7/x86_64/stable/Packages/获取对应版本的rpm包docker包docker-ce-18 ...
- centos7下配置iptables实现外网访问内网服务器
说明:Centos 7 默认的防火墙是 firewall,安装iptables之前需关闭Firewall 外网机器:外网ip:120.25.71.183内网ip:10.1.1.23 内网机器:内网ip ...
- centos7下使用n grok编译服务端和客户端穿透内网
(发现博客园会屏蔽一些标题中的关键词,比如ngrok.内网穿透,原因不知,所以改了标题才能正常访问,) 有时候想在自己电脑.路由器或者树莓派上搭建一些web.vpn等服务让自己用,但是自己的电脑一般没 ...
随机推荐
- nextcloud 中文乱码解决方案
参考地址 :https://www.yht7.com/news/13909 我是使用的第二种方法, 修改/nextcloud/lib/public/AppFramework/Http/FileDisp ...
- 将可执行程序设为linux服务启动
将可执行程序设为linux服务启动 如何将我们自己的程序设为linux的一个服务程序,并实现开机启动,需要经过如下三步: 1 把可执行程序放在一个linux系统可以找到的地方. ...
- CF990G-GCD Counting【dfs】
正题 题目链接:https://www.luogu.com.cn/problem/CF990G 题目大意 给出一棵有点权的树,对于每个\(k\)求有多条路径的点权\(gcd\)为\(k\) \(1\l ...
- 在开源项目或项目中使用git建立fork仓库
前言: vector我们经常使用,对vector里面的基本函数构造函数.增加函数.删除函数.遍历函数我们也会用到.其中在使用遍历之后erase删除元素过程中,会出现一种删除最后一个元素破坏了迭代器的情 ...
- 微信公众号开发之H5页面跳转到指定的小程序
前言: 最近公司有一个这样的需要,需要从我们在现有的公众号H5页面中加一个跳转到第三方小程序的按钮.之前只知道小程序之间是可以相互跳转的,今天查阅了下微信开发文档原来现在H5网页也支持小程序之间的跳转 ...
- 时序数据库InfluxDB的基本语法
一 了解InfluxDB的必要性 时序数据库主要存放的数据 Time series data is a series of data points each associated with a spe ...
- 洛谷4366——最短路(dijkstra,思维,异或)
题目大意 给定一个n个点,m条边的图,每条边有边权,而每个点\(i\)也可以直接到达\(j\),代价是\(i\ xor\ j\),给定一个S和T,求S到T的最小代价 其中\(n\le100000,m\ ...
- 破解安装pyhotn
1.网址 https://www.jetbrains.com/pycharm/download/#section=windows,打开页面,点击下载专业版 2.这是下载好的文件,双击运行即可. //详 ...
- vue.$nextTick实现原理
源码: const callbacks = [] let pending = false function flushCallbacks () { pending = false const copi ...
- 项目实战:Qt文件改名工具 v1.2.0(支持递归检索,搜索:模糊匹配,前缀匹配,后缀匹配;重命名:模糊替换,前缀追加,后缀追加)
需求 在整理文件和一些其他头文件的时候,需要对其名称进行整理和修改,此工具很早就应该写了,创业后,非常忙,今天抽空写了一个顺便提供给学习. 工具和源码下载地址 本篇文章的应用包和源码包可在 ...