通过Sendmail服务发送邮件
系统centos7
需要开启25端口
1
| yum -y install sendmail sendmail-cf
|
1
| yum -y install mailx php
|
1
| alternatives --config mta
|
画面显示:
1
2
3
4
5
6
7
8
| There are 2 programs which provide 'mta'.
Selection Command
-----------------------------------------------
+ 1 /usr/sbin/sendmail.postfix
* 2 /usr/sbin/sendmail.sendmail
Enter to keep the current selection[+], or type selection number: 2
|
输入2后回车即把MTA功能切换到sendmail上,+号会显示在sendmail的行头。
1
2
3
4
5
6
7
8
| vi /etc/mail/sendmail.mc
DAEMON_OPTIONS(\`Port=smtp,Addr=127.0.0.1, Name=MTA\')dnl
把Addr的值从127.0.0.1修改为0.0.0.0,不限制使用MTA的IP。
m4 /etc/mail/sendmail.mc > /etc/mail/sendmail.cf
生成正式的配置文件。
|
reboot -f
重启完成后确认MTA程序已经切换到sendmail
1
2
3
4
5
6
7
8
9
10
11
12
13
| ps aux | grep sendmail
root 1003 0.0 0.2 88688 2280 ? Ss 10:40 0:00 sendmail: accepting connections
smmsp 1018 0.0 0.1 84120 1912 ? Ss 10:40 0:00 sendmail: Queue runner@01:00:00 for /var/spool/clientmqueue
root 1141 0.0 0.0 112660 968 pts/1 R+ 10:51 0:00 grep --color=auto sendmail
sendmail的相关进程已经启动
ps aux | grep postfix
root 1161 0.0 0.0 112660 968 pts/1 R+ 11:04 0:00 grep --color=auto postfix
postfix的相关进程都没有开启
|
- 使用PHP接口做测试的好处是可以随意指定发送方的邮件地址,即mail函数的最后一个参数。
即使系统的hostname未设置也可以正常发送出邮件。
mail命令就没有使用自定义的邮件发送地址,而是使用HOSTNAME。
安装系统时由于没有对hostname做特别设置,HOSTNAME的值是默认的 localhost.localdomain
这样的邮件域名会被大多数邮箱如163,QQ拒收。
查看邮件发送log会发现以下错误
1
2
3
| cat /var/log/maillog
dsn=4.1.8, stat=Deferred: 450 4.1.8 <[email protected]>: Sender address rejected: Domain not found
|
修改HOSTNAME
vi /etc/hosts
在最后加上一行
192.168.2.108 intest.com
这里的IP地址是我跑sendmail虚拟机的IP,需根据实际情况设置
- 其实这个文件hosts只是用来设置本地路由表,但填上本机IP时,系统在启动初始化中查到本机IP在hosts中,就会用hosts文件中对应的域名来设置HOSTNAME。
重新启动
reboot -f
重启后发现本地的DNS配置文件etc/resolv.conf 已经被自动更新。
内容变成 nameserver 192.168.2.1
执行mail命令发送邮件
echo "test mail content"|mail -s "Mail title" [email protected]
alternatives --config mta
- Postfix是Centos7系统默认自带。 也可以用命令 yum list installed | grep postfix 确认
选择postfix所在行的编号后回车
reboot -f
重启后查看进程看到postfix相关的进程已经启动
1
2
3
4
5
6
7
8
9
| ps aux | grep postfix
root 1093 0.0 0.2 89544 2172 ? Ss 08:55 0:00 /usr/libexec/postfix/master -w
postfix 1094 0.0 0.4 89648 4016 ? S 08:55 0:00 pickup -l -t unix -u
postfix 1095 0.0 0.4 89716 4044 ? S 08:55 0:00 qmgr -l -t unix -u
postfix 1237 0.0 0.4 89796 4072 ? S 09:08 0:00 cleanup -z -t unix -u
postfix 1238 0.0 0.4 89652 4024 ? S 09:08 0:00 trivial-rewrite -n rewrite -t unix -u
postfix 1239 0.0 0.4 89856 4272 ? S 09:08 0:00 smtp -t unix -u
root 1274 0.0 0.0 112660 972 pts/1 R+ 09:09 0:00 grep --color=auto postfix
|
系统的hostname已经在sendmail配置的第六步中完成了配置,这里就直接使用PHP与mail命令
两种方法做测试。