linux中postfix配置安装

postfix是Wietse Venema在IBM的GPL协议之下开发的MTA(邮件传输代理)软件。postfix是Wietse Venema想要为使用最广泛的sendmail提供替代品的一个尝试,下面我们来看看postfix配置安装方法。

安装Postfix

代码如下

yum install postfix system-switch-mail

设定postfix

代码如下

vi /etc/postfix/main.cf

myhostname = ha.xxx.kh.edu.tw
myorigin = $myhostname
myorigin= xxx.kh.edu.tw
inet_interfaces = all
#inet_interfaces = local
mydestination = $myhostname, localhost.$mydomain, localhost
mynetworks = 163.32.X.0/24, 127.0.0.0/8
relay_domains = $mydestination

开机启动

代码如下

vi /etc/rc.d/rc.local

/usr/sbin/postfix start

安装与设定dovecot (Centos6.4)

安装软体

代码如下

yum -y install dovecot
cp /etc/dovecot.conf /etc/dovecot.conf.bak
vi /etc/dovecot.conf

protocols = pop3
ssl_disable = yes

修改dovecot收信预设位置

代码如下

vi /etc/dovecot/conf.d/10-mail.conf

mail_location = mbox:~/mail:INBOX=/var/mail/%u

vi /etc/dovecot/conf.d/10-auth.conf

disable_plaintext_auth = no
auth_mechanisms = plain login

重新启动

代码如下
service dovecot restart
chkconfig dovecot on

设定postfix SMTP 验证

代码如下

vi /etc/postfix/main.cf

smtpd_sasl_auth_enable = yes
smtpd_sasl_security_options = noanonymous
broken_sasl_auth_clients = yes
smtpd_recipient_restrictions = permit_mynetworks,permit_sasl_authenticated,reject_unauth_destination

chkconfig saslauthd on
service saslauthd restart

病毒过滤软体 Amavisd + Clamav 防毒与垃圾信

安装clamav amavisd-new软体

代码如下

yum -y install clamav amavisd-new

service clamd start

chkconfig --level 3,5 freshclam on

service amavisd start

chkconfig --level 3,5 amavisd on

指定邮件伺服器网域

代码如下

vi /etc/amavisd/amavisd.conf

$mydomain = www.111cn.net

在 master.cf 中先定义一个病毒过滤服务

代码如下

vi /etc/postfix/master.cf

amavis unix - - - - 2 smtp -o smtp_data_done_timeout=1200

再加入底下几行设定

代码如下

127.0.0.1:10025 inet n - - - - smtpd
-o content_filter=
-o local_recipient_maps=
-o relay_recipient_maps=
-o smtpd_restriction_classes=
-o smtpd_client_restrictions=
-o smtpd_helo_restrictions=
-o smtpd_sender_restrictions=
-o smtpd_recipient_restrictions=permit_mynetworks,reject
-o mynetworks=127.0.0.0/8
-o strict_rfc821_envelopes=yes
-o smtpd_error_sleep_time=0
-o smtpd_soft_error_limit=1001
-o smtpd_hard_error_limit=1000

content_filter 参数设定

vi /etc/postfix/main.cf

content_filter = amavis:[127.0.0.1]:10024

smtp inet ............中间栏位不用修改............. smtpd

(0)

相关推荐

  • Linux中Vmware-tools 的安装

    Linux中Vmware-tools 的安装 操作方法 01 1.安装步骤 首先先打开vmware workstation 并打开你要安装tools工具的linux虚拟机 然后单击vmware wor ...

  • 实例讲解Debian系的Linux中软件包的安装与管理命令用法

    apt-get用法:apt-get [选项] 命令   apt-get [选项] install|remove pkg1 [pkg2 ...]   apt-get [选项] source pkg1 [ ...

  • linux中php如何安装CURL扩展方法示例教程

    如果php已经在系统编译好,后来又需要添加新的扩展。 一种方式就是重新完全编译php,另一种方式就是单独编译扩展库,以extension的形式扩展。 下面以安装curl扩展为例: 1、下载curl安装 ...

  • linux中php如何安装CURL扩展方法

    如果php已经在系统编译好,后来又需要添加新的扩展。 一种方式就是重新完全编译php,另一种方式就是单独编译扩展库,以extension的形式扩展。 下面以安装curl扩展为例: 1、下载curl安装 ...

  • linux中给PHP安装mongodb的扩展

    环境说明: centos5.6 32bit php 5.2.17 php安装路径 /usr/local/php phpize路径 /usr/bin php-config路径 /usr/bin php. ...

  • linux中安装jdk

    在Linux中使用压缩包安装jdk 操作方法 01 首先当然是下载jdk,选择想要的版本进行安装. 官网下载地址为:直接搜即可(本来放了地址的,但是审核未果) 注意:下载tar.gz的包,选择对应你的 ...

  • 阿里云使用Linux系统应用配置有哪些问题

    Linux下如何进行FTP设置 ECS Linux服务器如何配置网站以及绑定域名 Ubuntu安装vncserver实现图形化访问 阿里云Docker镜像库 ECS linux中添加ftp用户,并设置 ...

  • 在Linux中安装配置Postfix来搭建邮件发送服务

    在创建网站应用时,在用户进行某些操作时需要发邮件给用户是一种必不可少的操作.云服务虽然是一个不错的选择.但如果体量太小,或是受到某些条件限制时,自建服务也许是一个更好的选择.下面尝试在 CentOS ...

  • Linux中QQ软件的安装和配置

    很多朋友的机器上都安装了Linux,并且想在Linux环境中使用QQ。下面就将本人在Red Hat 9.0上配置QQ的成功经验共享出来。 选择QQ软件 腾迅公司并没有推出专门应用于Linux下的QQ软 ...