这篇文章主要介绍Linux下如何安装Postfix邮件,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!

本套邮件系统的搭建,从如何发邮件到收邮件到认证到虚拟用户虚拟域以及反病毒和反垃圾邮件等都有详细的介绍。在搭建过程中必须的参数解释以及原理都有告诉,这样才能更好地理解邮件系统。

卸载自带postfix

$rpm-qpostfixpostfix-2.6.6-2.2.el6_1.x86_64$rpm-evpostfix--nodeps环境准备

\1. YUM要配置好。

\2. 编译环境要配置好。

PS: 这两步骤如果有问题,那么可以看本网站提供的YUM和编译章节。

安装MySQL服务器

$yuminstallmysql-servermysqlmysql-develperl-DBD-MySQL$chkconfigmysqldon$servicemysqldrestart$rpm-qmysqlmysql-5.1.71-1.el6.x86_64安装cyrus-sasl并启动saslauthd服务

$yuminstallcyrus-saslcyrus-sasl-devel$servicesaslauthdstart$chkconfigsaslauthdon查看postfix用户

$idpostfixuid=89(postfix)gid=89(postfix)组=89(postfix),12(mail)

发送邮件的用户,这里就使用系统自带的postfix用户,记住UID:89、GID:89,后面很多地方都要用到这两个ID号,如果此ID号更改了,那么Postfix安装方面会有很多目录权限都需要更改。

编译安装postfix-2.11.7

$tarzxvfpostfix-2.11.7.tar.gz$cdpostfix-2.11.7$makemakefiles'CCARGS=-DHAS_MYSQL-I/usr/include/mysql-DUSE_SASL_AUTH-DUSE_CYRUS_SASL-I/usr/include/sasl-DUSE_TLS''AUXLIBS=-L/usr/lib64/mysql-lmysqlclient-lz-lm-L/usr/lib/sasl2-lsasl2-lssl-lcrypto'$tarzxvfpostfix-2.11.7.tar.gz$cdpostfix-2.11.7$makemakefiles'CCARGS=-DHAS_MYSQL-I/usr/include/mysql-DUSE_SASL_AUTH-DUSE_CYRUS_SASL-I/usr/include/sasl-DUSE_TLS''AUXLIBS=-L/usr/lib64/mysql-lmysqlclient-lz-lm-L/usr/lib/sasl2-lsasl2-lssl-lcrypto'#-DHAS_MYSQL-I/usr/include/mysql//启用Mysql存储,指定头文件;#-DUSE_SASL_AUTH-DUSE_CYRUS_SASL-I/usr/include/sasl//启用SASL(cyrus)认证框架;#-DUSE_TLS//启用SSL功能;#AUXLIBS=-L/usr/lib64/mysql-lmysqlclient//找Mysql客户端库文件;#-lz//压缩裤文件;#-lm-L/usr/lib64/sasl2//模块文件;#-lsasl2-lssl-lcrypto//加密库文件;

有以下信息就表示配置成功了

[src/posttls-finger]cat../../conf/makedefs.outMakefile.in>Makefilerm-fMakefile;(catconf/makedefs.outMakefile.in)>Makefile$make$makeinstall

按照以下的提示输入相关的路径([]号中的是缺省值,”]”后的是输入值,省略的表示采用默认值)

install_root:[/]#指定Postfix安装目录,默认tempdir:[/root/postfix-2.11.7]/tmp/postfix#指定Postfix临时文件目录config_directory:[/etc/postfix]#指定Postfix配置文件目录,默认command_directory:[/usr/sbin]#指定Postfix二进制文件目录,默认daemon_directory:[/usr/libexec/postfix]#指定Postfix服务器进程,默认data_directory:[/var/lib/postfix]#指定Postfix可写文件目录,默认html_directory:[no]/var/www/html/postfix#指定Postfix帮助文件,可以使用web服务器打开mail_owner:[postfix]#指定Postfix属主,默认mailq_path:[/usr/bin/mailq]#指定Postfix队列程序路径,默认manpage_directory:[/usr/local/man]newaliases_path:[/usr/bin/newaliases]#指定Postfix生成别名命令位置,默认queue_directory:[/var/spool/postfix]#指定Postfix队列目录,默认readme_directory:[no]sendmail_path:[/usr/sbin/sendmail]#指定Postfix客户端(smtp),默认setgid_group:[postdrop]#指定Postfix投递组(默认有这个组,但没有这个用户),默认

PS:如果输入错误可以按Ctrl+退格键删除字符。

添加SysV风格服务脚本

[root@localhost~]#vim/etc/rc.d/init.d/postfix#!/bin/bash##chkconfig:23458030#description:PostfixisaMailTransportAgent,whichistheprogram\#processname:master#pidfile:/var/spool/postfix/pid/master.pid#config:/etc/postfix/main.cf#config:/etc/postfix/master.cf#Sourcefunctionlibrary../etc/rc.d/init.d/functions#Sourcenetworkingconfiguration../etc/sysconfig/network#Checkthatnetworkingisup.[$NETWORKING="no"]&&exit3[-x/usr/sbin/postfix]||exit4[-d/etc/postfix]||exit5[-d/var/spool/postfix]||exit6RETVAL=0prog="postfix"start(){#Startdaemons.echo-n$"Startingpostfix:"/usr/bin/newaliases>/dev/null2>&1/usr/sbin/postfixstart2>/dev/null1>&2&&success||failure$"$progstart"RETVAL=$?[$RETVAL-eq0]&&touch/var/lock/subsys/postfixechoreturn$RETVAL}stop(){#Stopdaemons.echo-n$"Shuttingdownpostfix:"/usr/sbin/postfixstop2>/dev/null1>&2&&success||failure$"$progstop"RETVAL=$?[$RETVAL-eq0]&&rm-f/var/lock/subsys/postfixechoreturn$RETVAL}reload(){echo-n$"Reloadingpostfix:"/usr/sbin/postfixreload2>/dev/null1>&2&&success||failure$"$progreload"RETVAL=$?echoreturn$RETVAL}abort(){/usr/sbin/postfixabort2>/dev/null1>&2&&success||failure$"$progabort"return$?}flush(){/usr/sbin/postfixflush2>/dev/null1>&2&&success||failure$"$progflush"return$?}check(){/usr/sbin/postfixcheck2>/dev/null1>&2&&success||failure$"$progcheck"return$?}restart(){stopstart}#Seehowwewerecalled.case"$1"instart)start;;stop)stop;;restart)stopstart;;reload)reload;;abort)abort;;flush)flush;;check)check;;status)statusmaster;;condrestart)[-f/var/lock/subsys/postfix]&&restart||:;;*)echo$"Usage:$0{start|stop|restart|reload|abort|flush|check|status|condrestart}"exit1esacexit$?#END[root@localhost~]#chmod+x/etc/rc.d/init.d/postfix[root@localhost~]#chkconfig--addpostfix[root@localhost~]#chkconfigpostfixon[root@localhost~]#servicepostfixstartPostfix相关命令

#开启postfix;$postfixstart#检查配置;$postfixcheck#重新加载;$postfixreload$postconf[OPTION]-d:显示Postfix默认的配置;-n:显示新修改的配置;-m:显示支持的存储文件类型如hash,mysql等;-a:显示支持sasl的客户端插件类型;

安装完毕

如果上面没有使用UID为89的postfix用户,那么检查postfix时就会报如下错误。

$postfixcheckpostsuper:fatal:scan_dir_push:opendirectorydefer:Permissiondenied

原因是一般编译安装时,Postfix队列目录/var/spoole/postfix/,下有几个目录会使用系统自带postfix的目录,由于系统默认使用postfix(UID:89)用户给删除了,所以这些目录就找不到postfix用户,开启时就会报错一些权限问题,把以下几个目录权限给修改以下就好了,如果还有一些别的目录一并修改即可。

$chown-Rpostfix.root/var/spool/postfix/defer/$chown-Rpostfix.root/var/spool/postfix/deferred/$chown-Rpostfix.root/var/spool/postfix/private/$chown-Rpostfix.postdrop/var/spool/postfix/public/$chown-Rpostfix.postdrop/var/spool/postfix/maildrop/$chown-Rpostfix.root/var/lib/postfix/Postfix进程

master:这条进程是Postfix邮件系统的大脑,它产生所有其他进程。smtpd:作为服务器端程序处理所有外部连进来的请求。smtp:作为客户端程序处理所有对外发起连接的请求。qmgr:它是Postfix邮件系统的心脏,处理和控制邮件队列里面的所有消息。local:这是Postfix自有的本地投递代理MDA,就是它负责把邮件保存到邮箱里。


以上是“Linux下如何安装Postfix邮件”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注亿速云行业资讯频道!