本文简单整理了一下如何在Linux服务器上安装、配置SendMail发送邮件的步骤,此文不是配置邮件服务器,具体测试环境为CentOS Linux release 7.2.1511 (Core) ,如遇特殊平台有所差别,请以实际情况为准则。

Linux 系统版本查看

检查、了解系统版本信息,主要是如果使用rpm安装时,需要下载合适的版本。

[root@mylnx06 ~]# more /etc/redhat-release 

CentOS Linux release 7.2.1511 (Core)

 

检查是否安装sendmail组件

如下所示,该服务器上并没有安装sendmail的相关组件。那么我们直接使用yum安装sendmail组件即可。

[root@mylnx06 ~]# rpm -qa | grep sendmail

 

 

 

[root@mylnx06 ~]# yum list sendmail

Loaded plugins: fastestmirror, langpacks

Loading mirror speeds from cached hostfile

 * epel: ftp.cuhk.edu.hk

Available Packages

sendmail.x86_64                                       8.14.7-4.el7                    base

使用yum安装sendmail组件,当然你可以使用其它方式安装,此处不做展开介绍。

[root@mylnx06 ~]# yum install sendmail.x86_64 

Loaded plugins: fastestmirror, langpacks

Loading mirror speeds from cached hostfile

 * epel: ftp.cuhk.edu.hk

Resolving Dependencies

--> Running transaction check

---> Package sendmail.x86_64 0:8.14.7-4.el7 will be installed

--> Finished Dependency Resolution

 

Dependencies Resolved

 

========================================================================================================================

 Package                     Arch                      Version                            Repository               Size

========================================================================================================================

Installing:

 sendmail                    x86_64                    8.14.7-4.el7                       base                    722 k

 

Transaction Summary

========================================================================================================================

Install  1 Package

 

Total download size: 722 k

Installed size: 1.6 M

Is this ok [y/d/N]: y

Downloading packages:

sendmail-8.14.7-4.el7.x86_64.rpm                                                                 | 722 kB  00:00:00     

Running transaction check

Running transaction test

Transaction test succeeded

Running transaction

  Installing : sendmail-8.14.7-4.el7.x86_64                                                                         1/1 

  Verifying  : sendmail-8.14.7-4.el7.x86_64                                                                         1/1 

 

Installed:

  sendmail.x86_64 0:8.14.7-4.el7                                                                                        

 

Complete!

[root@mylnx06 ~]# 

 

编辑/etc/aliases文件

Sendmail有一个非常实用的功能,就是为每个账号取别名(Aliase) 会使用一个在 /etc/aliases 中的档案做使用者名称转换的动作。 所以这个配置文件是可配也可以不配,具体视你的需求而定。

[root@mylnx06 ~]# vi /etc/aliases

#

#  Aliases in this file will NOT be expanded in the header from

#  Mail, but WILL be visible over networks or from /bin/mail.

#

#       >>>>>>>>>>      The program "newaliases" must be run after

#       >> NOTE >>      this file is updated for any changes to

#       >>>>>>>>>>      show through to sendmail.

#

 

# Basic system aliases -- these MUST be present.

mailer-daemon:  postmaster

postmaster:     root

 

# General redirections for pseudo accounts.

bin:            root

daemon:         root

adm:            root

lp:             root

sync:           root

shutdown:       root

halt:           root

mail:           root

news:           root

uucp:           root

operator:       root

games:          root

gopher:         root

ftp:            root

nobody:         root

radiusd:        root

nut:            root

dbus:           root

vcsa:           root

canna:          root

wnn:            root

rpm:            root

nscd:           root

pcap:           root

apache:         root

webalizer:      root

dovecot:        root

fax:            root

quagga:         root

radvd:          root

pvm:            root

amandabackup:           root

privoxy:        root

ident:          root

named:          root

xfs:            root

gdm:            root

mailnull:       root

postgres:       root

sshd:           root

smmsp:          root

postfix:        root

netdump:        root

ldap:           root

squid:          root

ntp:            root

mysql:          root

desktop:        root

rpcuser:        root

rpc:            root

nfsnobody:      root

 

ingres:         root

system:         root

toor:           root

manager:        root

dumper:         root

abuse:          root

 

newsadm:        news

newsadmin:      news

usenet:         news

ftpadm:         ftp

ftpadmin:       ftp

ftp-adm:        ftp

ftp-admin:      ftp

www:            webmaster

webmaster:      root

noc:            root

security:       root

hostmaster:     root

info:           postmaster

marketing:      postmaster

sales:          postmaster

support:        postmaster

 

 

# trap decode to catch security attacks

decode:         root

 

# Person who should get root's mail

#root:          marc

如下截图所示,如果我配置别名为root的,配置接收邮件(下面邮件仅仅是一个模板而已)

 

修改配置文件sendmail.cf

修改/etc/mail/sendmail.cf 添加对应的DS, DS后面为邮件服务器的IP地址。根据实际具体情况配置。其实这个配置文件,如果需要,还有蛮多需要配置、细化的地方,此处只讲述最简单的配置。

# host/domain names ending with a token in class P are canonical

CP.

 

# "Smart" relay host (may be null)

DS[xxx.xxx.xxx.xxx]

 

 

# operators that cannot be in local usernames (i.e., network indicators)

CO @ % !

 

# a class with just dot (for identifying canonical names)

 

重启sendmail服务

[root@mylnx06 ~]# service sendmail status

Redirecting to /bin/systemctl status  sendmail.service

● sendmail.service - Sendmail Mail Transport Agent

   Loaded: loaded (/usr/lib/systemd/system/sendmail.service; enabled; vendor preset: disabled)

   Active: inactive (dead)

 

Feb 22 10:29:45 azlnx06 systemd[1]: Stopped Sendmail Mail Transport Agent.

 

 

[root@mylnx06 ~]# service sendmail start

Redirecting to /bin/systemctl start  sendmail.service

[root@mylnx06 ~]# service sendmail status

Redirecting to /bin/systemctl status  sendmail.service

● sendmail.service - Sendmail Mail Transport Agent

   Loaded: loaded (/usr/lib/systemd/system/sendmail.service; enabled; vendor preset: disabled)

   Active: active (running) since Wed 2017-02-22 10:42:02 HKT; 5s ago

  Process: 46129 ExecStart=/usr/sbin/sendmail -bd $SENDMAIL_OPTS $SENDMAIL_OPTARG (code=exited, status=0/SUCCESS)

  Process: 46116 ExecStartPre=/etc/mail/make aliases (code=exited, status=0/SUCCESS)

  Process: 46115 ExecStartPre=/etc/mail/make (code=exited, status=0/SUCCESS)

 Main PID: 46131 (sendmail)

   CGroup: /system.slice/sendmail.service

           └─46131 sendmail: accepting connections

 

Feb 22 10:42:02 azlnx06 systemd[1]: Starting Sendmail Mail Transport Agent...

Feb 22 10:42:02 azlnx06 sendmail[46124]: alias database /etc/aliases rebuilt by root

Feb 22 10:42:02 azlnx06 sendmail[46124]: /etc/aliases: 77 aliases, longest 17 bytes, 792 bytes total

Feb 22 10:42:02 azlnx06 sendmail[46131]: starting daemon (8.14.7): SMTP+queueing@01:00:00

Feb 22 10:42:02 azlnx06 systemd[1]: PID file /run/sendmail.pid not readable (yet?) after start.

Feb 22 10:42:02 azlnx06 systemd[1]: Started Sendmail Mail Transport Agent

 

测试邮件服务

如下所示,使用mail命令测试能否成功收到邮件。如果成功,表示前面配置OK, 如果没有收到邮件,则必须检查日志,然后根据具体错误信息诊断问题。

 

[root@mylnx06 ~]# cat > test.txt

it is only test

^Z

[1]+  Stopped                 cat > test.txt

[root@mylnx06 ~]# mail -s "test" konglb@xxxx.com < test.txt 

[root@mylnx06 ~]# 

 

 

[azrlnx06azlnx06 ~]$ echo 'it is only a test' | mail -s "test eamil"  konglb@xxxx.com

[azrlnx06@azlnx06 ~]$ 

Linux简单配置SendMail发送邮件的更多相关文章

  1. linux简单配置

    lsof -i lsof -i:211.判断apache查找httpd路径: ps aux | grep httpd 结果:  /usr/local/apache/bin/httpd /usr/loc ...

  2. linux安装配置sendmail实现邮件发送

    sendmail配置 yum -y update sendmail sendmail-cf SendMail相关目录1. 设定档目录:/etc/mail2. 记录档:/var/log/maillog3 ...

  3. Linux基础命令---sendmail发送邮件

    sendmail sendmail是postfix中的一个发送邮件的代理程序,它负责发送邮件到远程服务器,并且可以接收邮件.sendmail在发送邮件的时候,默认从标砖输入读取内容,以".& ...

  4. Linux系统下sendmail发送邮件失败的问题

         问题是:安装完sendmail,启动服务后,发送邮件第一次发送成功,后面再次无论怎么发送都不行,换邮箱也不行.在确认我的邮件发送格式正确无误后,想到查看邮件发送日志: [root@backu ...

  5. Linux下使用sendmail发送邮件

    现在每天需要将统计数据发送给指定的人员. 使用原始手工的方式每天发送很麻烦,于是想改成一个定时任务,让服务器自动发送. 技术告诉我说他有写过sendmail的一个脚本. 我尝试使用了一下,发现 ser ...

  6. wamp配置sendmail发送邮件

    下载 sendmail ( 地址: http://www.glob.com.au/sendmail/sendmail.zip ) [PHP.ini 配置] [mail function]; For W ...

  7. Linux中使用sendmail发送邮件,指定任意邮件发送人

    一.使用任意发件人发送邮件 echo .com -s .com 其中s表示主题.

  8. dokuwiki 配置 sendmail 邮件发送

    dokuwiki 发送邮件有2种方式: 一是直接使用 PHP 自带发送功能,需要配置 PHP.ini 文件, 我没试过,可参考官网 https://www.dokuwiki.org/tips:mail ...

  9. 自学Zabbix3.10.2.1 linux如何配置使用sendEmail发送邮件

    点击返回:自学Zabbix之路 点击返回:自学Zabbix4.0之路 点击返回:自学zabbix集锦 自学Zabbix3.10.2.1 linux如何配置使用sendEmail发送邮件 sendEma ...

随机推荐

  1. [Swift]LeetCode746. 使用最小花费爬楼梯 | Min Cost Climbing Stairs

    On a staircase, the i-th step has some non-negative cost cost[i] assigned (0 indexed). Once you pay ...

  2. windows服务器解决挖矿程序问题

    前几天发现服务器报警,cpu使用率已达100%,查资料知道正是最近比较流行的挖矿程序在捣鬼.我们使用的是阿里云的服务器,操作系统是windows server.网上有大量的资料讲如何处理,我把自己处理 ...

  3. Java IO流读取文件

    使用指定编码读取文件 public static String toString(File file, String charset){ StringBuilder result = new Stri ...

  4. Nginx学习系列二Linux下Nginx实现负载均衡

    关于在本地虚拟机(VMware 14)下安装Linux同时安装Nginx,请参考Nginx学习系列之搭建环境 1.启动Nginx 在Nginx安装成功的前提下,启动Nginx 已root模式登陆(权限 ...

  5. asp.net core 系列 8 Razor框架路由(下)

    三.页面路由操作约定 接着上篇讲asp.net core 系列 7 Razor框架路由.在上篇继续第三节 "页面路由操作约定" 的最后一小节 AddPageRoute . 3.3. ...

  6. 三种方式给apt设置代理

    为什么设置代理,你懂得. 有很多第三方工具可以用,比如proxychains,非常好用,不过今天这不是正题.因为有可能没有代理,上网你都做不到,更别提下载软件了.想一想方法还是告诉你,免得你万一必须用 ...

  7. 关于mybatis中typeHandler的两个案例

    在做开发时,我们经常会遇到这样一些问题,比如我有一个Java中的Date数据类型,我想将之存到数据库的时候存成一个1970年至今的毫秒数,怎么实现?再比如我有一个User类,User类中有一个属性叫做 ...

  8. leetcode — convert-sorted-array-to-binary-search-tree

    import java.util.ArrayList; import java.util.Arrays; import java.util.List; /** * * Source : https:/ ...

  9. AppBoxFuture(六): 前端组件化开发

      前面几篇都是在介绍结构化与非结构化的数据存储,本篇换换口味介绍一下框架是如何实现前端组件化开发的.首先得感谢Vue.ElementUI等优秀的前端开源项目,这些项目帮助作者快速实现了框架的两个前端 ...

  10. Redis的复制是如何实现的?

    前言 关系数据库通常会使用一个主服务器向多个从服务器发送更新,并使用从服务器来处理所有的读请求,Redis采用了同样方法来实现自己的复制特性. 简单总结起来就是:在接收到主服务器发送的数据初始副本之后 ...