Centos6.4下配置邮件服务器postfix3.0.1(一)

邮件服务器部署

1 编译安装postfix

www.postfix.org

①由于Centos已经有了postfix

[[email protected] ~]# rpm -qa|grep postfix
postfix-2.6.6-2.2.el6_1.x86_64

所以得先卸载

[[email protected] ~]# rpm -e postfix --nodeps

②从www.postfix.org获得源码安装包

③解压包

[[email protected] ~]# tar xf postfix-3.0.1.tar.gz 
[[email protected] ~]# cd postfix-3.0.1

④安装前添加用户postfix,postdrop且使得依赖服务开机启动saslauthd

[[email protected] ~]# groupadd -g 2525 postfix
[[email protected] ~]# useradd -g 2525 -u 2525 -M -s /sbin/nologin postfix
[[email protected] ~]# groupadd -g 2526 postdrop
[[email protected] ~]# useradd -u 2526 -g 2526 -M -s /sbin/nologin postdrop
[[email protected] ~]# service saslauthd start
Starting saslauthd:                                        [  OK  ]
[[email protected] ~]# chkconfig saslauthd on

⑤编译安装

[[email protected] postfix-3.0.1]# make makefiles ‘CCARGS=-DHAS_MYSQL -I/usr/local/mysql/include  -DUSE_SASL_AUTH -DUSE_CYRUS_SASL -I/usr/include/sasl -DUSE_TLS ‘ ‘AUXLIBS=-L/usr/local/mysql/lib -lmysqlclient -lz -lrt -lm -L/usr/lib64/sasl2 -lsasl2   -lssl -lcrypto‘

注意:

1 如果出现/usr/bin/ld: cannot find -lmysqlclient错误,请确保你的mysql路径库指定正确

2 如果出现 error while loading shared libraries: libpcre.so.1: cannot open shared object file: Error 40,请确保/usr/local/lib下有指向libpcre.so.0.0.1的链接,然后一定要ldconfig,我因为这个弄了半个小时

3 请确认每个文件夹你都可以查看到具体内容,如64为要修改为lib64

最终所有的互动都有默认值才成功

postfix: warning: smtputf8_enable is true, but EAI support is not compiled in

Warning: you still need to edit myorigin/mydestination/mynetworks

parameter settings in /etc/postfix/main.cf.

See also http://www.postfix.org/STANDARD_CONFIGURATION_README.html

for information about dialup sites or about sites inside a firewalled

network.

BTW: Check your /etc/aliases file and be sure to set up aliases

that send mail for root and postmaster to a real person, then run

/usr/bin/newaliases.

⑥为postfix提供SysV服务脚本/etc/rc.d/init.d/postfix,:

#!/bin/bash
#
# postfix      Postfix Mail Transfer Agent
#
# chkconfig: 2345 80 30
# description: Postfix is a Mail Transport Agent, which is the program #              that moves mail from one machine to another.
# processname: master
# pidfile: /var/spool/postfix/pid/master.pid
# config: /etc/postfix/main.cf
# config: /etc/postfix/master.cf
# Source function library.
. /etc/rc.d/init.d/functions
# Source networking configuration.
. /etc/sysconfig/network
# Check that networking is up.
[ $NETWORKING = "no" ] && exit 3
[ -x /usr/sbin/postfix ] || exit 4
[ -d /etc/postfix ] || exit 5
[ -d /var/spool/postfix ] || exit 6
RETVAL=0
prog="postfix"
start() {
# Start daemons.
echo -n $"Starting postfix: "
        /usr/bin/newaliases >/dev/null 2>&1
/usr/sbin/postfix start 2>/dev/null 1>&2 && success || failure $"$prog start"
RETVAL=$?
[ $RETVAL -eq 0 ] && touch /var/lock/subsys/postfix
        echo
return $RETVAL
}
stop() {
  # Stop daemons.
echo -n $"Shutting down postfix: "
/usr/sbin/postfix stop 2>/dev/null 1>&2 && success || failure $"$prog stop"
RETVAL=$?
[ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/postfix
echo
return $RETVAL
}
reload() {
echo -n $"Reloading postfix: "
/usr/sbin/postfix reload 2>/dev/null 1>&2 && success || failure $"$prog reload"
RETVAL=$?
echo
return $RETVAL
}
abort() {
/usr/sbin/postfix abort 2>/dev/null 1>&2 && success || failure $"$prog abort"
return $?
}
flush() {
/usr/sbin/postfix flush 2>/dev/null 1>&2 && success || failure $"$prog flush"
return $?
}
check() {
/usr/sbin/postfix check 2>/dev/null 1>&2 && success || failure $"$prog check"
return $?
}
restart() {
stop
start
}
# See how we were called.
case "$1" in
  start)
start
;;
  stop)
stop
;;
  restart)
stop
start
;;
  reload)
reload
;;
  abort)
abort
;;
  flush)
flush
;;
  check)
check
;;
  status)
  status master
;;
  condrestart)
[ -f /var/lock/subsys/postfix ] && restart || :
;;
  *)
echo $"Usage: $0 {start|stop|restart|reload|abort|flush|check|status|condrestart}"
exit 1
esac
exit $?

再为此脚本赋予执行权限:

[[email protected] postfix]# vim /etc/rc.d/init.d/postfix
[[email protected] postfix]# chmod +x /etc/rc.d/init.d/postfix

将postfix服务添加至服务列表:

[[email protected] postfix-3.0.1]#chkconfig --add postfix

设置其开机自动启动:

# chkconfig postfix on

测试

[[email protected] postfix]# service postfix restart

Shutting down postfix:                                     [  OK  ]

Starting postfix:                                          [  OK  ]

如果报错postfix: warning: smtputf8_enable is true, but EAI support is not compiled in,网上查得EAI是多语种,那么把smtpputf8_enable设置为no即可

[[email protected] postfix-3.0.1]# postconf "smtputf8_enable = no"
[[email protected] postfix-3.0.1]# postfix start
[[email protected] postfix-3.0.1]# postfix start
postfix/postfix-script: starting the Postfix mail system

发现有25号端口在监听就ok

[[email protected] postfix-3.0.1]# netstat -tnpl
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address               Foreign Address             State       PID/Program name   
tcp        0      0 0.0.0.0:49198               0.0.0.0:*                   LISTEN      1604/rpc.statd      
tcp        0      0 0.0.0.0:111                 0.0.0.0:*                   LISTEN      1524/rpcbind        
tcp        0      0 0.0.0.0:22                  0.0.0.0:*                   LISTEN      1810/sshd           
tcp        0      0 127.0.0.1:631               0.0.0.0:*                   LISTEN      1665/cupsd          
tcp        0      0 0.0.0.0:25                  0.0.0.0:*                   LISTEN      32725/master        
tcp        0      0 :::111                      :::*                        LISTEN      1524/rpcbind        
tcp        0      0 :::80                       :::*                        LISTEN      1834/httpd          
tcp        0      0 :::22                       :::*                        LISTEN      1810/sshd           
tcp        0      0 :::58038                    :::*                        LISTEN      1604/rpc.statd      
tcp        0      0 ::1:631                     :::*                        LISTEN      1665/cupsd          
tcp        0      0 :::3306                     :::*                        LISTEN      27743/mysqld

具体可以打开日志文件查看/var/log/maillog

然后

[[email protected] postfix]# newaliases启动别名功能

2 配置邮件服务器

控制进程的:master.cf

主配置文件:main.cf

通常可以用postconf命令修改配置文件

postconf -d 显示默认的设置

postconf -n 显示修改的内容

postconf -m 支持的查找表模型

postconf -A 显示支持的SASL客户端插件类型

postconf -e PARAMETER=VALUE:更新值

smtp状态码:

1xx:纯信息

2xx:正确

3xx:操作尚未完成

4xx:暂时性错误

5xx:永久性错误

smtp协议命令:

helo(smtp)

ehlo(esmtp)

mail from:说明发件人

rcpt to:指定收件人

data

alias:邮件别名

/etc/aliases

默认情况下,postfix会为本地网段中继,具体配置见Centos6.4下配置邮件服务器postfix3.0.1(二)

时间: 2024-10-08 13:07:28

Centos6.4下配置邮件服务器postfix3.0.1(一)的相关文章

Centos6.5下配置DNS服务器

配置要求如下: 在服务器中安装配置bind服务,负责区域"xiangcheng.net" IP地址为10.100.100.x ,主机解析,五台主机分别为dns.xiangcheng.net.www.xiangcheng.net.bbs.xiangcheng.net.pxe.xiangcheng.net.ftp.xiangcheng.net.ftpl.xiangcheng.net,做好正反向DNS服务解析,对访问yongli.com域的解析转发给10.100.10.100; 我们先装一个

centos6.4下配置nginx服务器更改根目录

安装完nginx服务器后发现nginx的根目录在/usr/share/nginx/html/下,但是对于部署文件来说,在该目录下是不太习惯的,我就尝试着更改nginx访问的根目录 #  vi /etc/nginx/conf.d/default.conf # # The default server # server { listen 80; server_name localhost; root /var/www; #修改新的目录为var下的www目录 #charset koi8-r; #acc

linux下的邮件服务器

既然总结了windows下的邮件服务器,那么linux下的邮件服务器也一起总结一下. 在中职技能比赛中邮件服务器不管是linux和windows原理都是一样,只不过实现的方式有所区别,windows2003下一般是安装并配置SMTP和POP3服务,linux下一般是配置sendmail(起着SMTP协议作用)和dovecot(起着POP3协议作用)这两个服务.当然windows下exichange服务器在真实环境中用的比较多,不过此处范围限定在中职就不再赘述. linux下邮件服务器的要点: 1

Centos6.8下搭建SVN服务器

1.Centos6.8下搭建SVN服务器 Subversion是一个自由,开源的版本控制系统.Subversion将文件存放在中心版本库里.这个版本库很像一个普通的文件服务器,不同的是,它可以记录每一次文件和目录的修改情况.这样就可以籍此将数据恢复到以前的版本,并可以查看数据的更改细节.Subversion是Apache基金会下的一个项目,官网 https://subversion.apache.org/ . 2.安装 yum -y install subversion 3.创建SVN版本库 m

CentOS6.8下安装DNS服务器

            CentOS6.8下安装DNS服务器   1.安装DNS服务器组件 安装bind # yum install bind bind-libs bind-utils bind-chroot 2.修改主配置文件/etc/named.conf 需要修改的如下(带红色标注): # vi /etc/named.conf options { listen-on port 53 { any; }; //listen-on-v6 port 53 { ::1; }; directory   

CentOS7下搭建邮件服务器(dovecot + postfix + SSL)

CentOS 花了基本上两天的时间去配置CentOS7下的邮件服务器.其中艰辛太多了,一定得总结下. 本文的目的在于通过一系列配置,在CentOS 7下搭建dovecot + postfix + SSL 服务器,并且能够通过邮件客户端(本文中是Airmail)进行收发邮件. 前提条件 你得有个主机或者VPS 你有一个主域名比如 fancycoding.com 还有一个二级域名比如 mail.fancycoding.com 二级域名的 SSL 证书. 配置你的DNS记录 确认主域名有A记录指向服务

Linux下配置Tomcat服务器

Linux下配置Tomcat服务器和Windows下其实差不多,可以去官网下载安装包释放或者在线下载,只是当时下载的windows.zip文件,现在下载.tar.gz格式的即可,下面使用命令行的方式安装 还是在/usr/local下新建目录tomcat进入后用wget命令下载最新包,tomcat9.0现在已经出来了,但是为了和eclipse项目更好的兼容,建议下载tomcat8.0的最新包 下载好之后进行释放 tar -xzvf apache-tomcat-8.0.30.tar.gz 释放出来之

debian下搭建邮件服务器

第一步 #apt-get update #apt-get upgrade #apt-get install postfix libsasl2-2 sasl2-bin libsasl2-modules dovecot-imapd dovecot-pop3d dovecot-common 第二步 配置邮件服务器 首先,停掉这三项服务: #postfix stop #service dovecot stop 接下来,修改postfix的配置文件/etc/postfix/main.cf 由于采用了sas

[Linux]在Mac下配置Linux服务器并安装Nginx+PHP

Linux 安装Debian系统 我安装的是Debian7.5的系统,Debian的软件包管理和升级十分方便,而且系统也很稳定.安装盘可以去华中科技大学镜像.网易开源镜像站或者中国科技大学镜像下载,和官网一样,一般下载的时候会提供DVD-1.DVD-2和DVD-3的下载,后面二者均是一些不太流行的软件,只需要下载安装DVD-1即可. 修改sources.list 装好系统之后的第一件事情就是修改Debian的源,因为默认的配置会访问镜像介质,修改源可以直接联网通过apt-get获取并安装软件包,