博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Centos yum 邮件服务器配置 CentOS release 6.3 (Final)
阅读量:6714 次
发布时间:2019-06-25

本文共 1486 字,大约阅读时间需要 4 分钟。

  hot3.png

1.首先要配置MX,我配置完成可以显示如下信息
2.说明配置正常
3.rpm -q dovecot 判断是否已经安装
4.未安装的情况下面安装 rpm -ivh dovecot
5.rpm -q postfix 判断是否已经安装
6.未安装的情况下面安装rpm -ivh postfix
7.cd /etc/postfix 
8.cp main.cf main.cf.bak
9.vi main.cf 放入如下内容,ip请替换成本机真实ip,注解部分也要最后打开,用于saslauthd,最后要打开的
myorigin = $mydomaininet_interfaces = allmydestination = $myhostname localhost.$mydomain localhost $mydomainmynetworks = 127.0.0.0/8,localhost,iprelay_domains =home_mailbox = Maildir/alias_maps = hash:/etc/aliases#smtpd_sasl_local_domain =#smtpd_sasl_auth_enable = yes#smtpd_sasl_security_options = noanonymous#broken_sasl_auth_clients = yes#smtpd_recipient_restrictions = permit_sasl_authenticated,permit_mynetworks,reject_unauth_destination

10.cd /etc/dovecot 

11 vi dovecot.conf 去掉 protocols = imap pop3 lmtp 前面的#
12 vi /etc/dovecot/conf.d/10-mail.conf  
13 去掉10-mail.conf前面的#  mail_location = maildir:~/Maildir  ##line no 24 - uncomment
14 vi /etc/dovecot/conf.d/10-auth.conf 
auth_username_format = %n
disable_plaintext_auth = no  ##line no 9 - uncomment and change from yes to no.
auth_mechanisms = plain login  ##line no 97 - add the text "login"
15 vi /etc/dovecot/conf.d/10-master.conf 
unix_listener auth-userdb {
    mode = 0660
    user = postfix  ##line no 83 - uncomment and enter postfix
    group = postfix  ##line no 84 - uncomment and enter postfix
16 service dovecot restart
17 最后加密方式,通过如下方式saslauthd 
http://articles.slicehost.com/2009/9/29/centos-postfix-secure-connection-configuring-saslauthd 

转载于:https://my.oschina.net/skyim/blog/220925

你可能感兴趣的文章
cJSON 使用笔记
查看>>
CF1163E Magical Permutation
查看>>
指针与数组区别
查看>>
showModalDialog关闭子窗口,并刷新父窗口
查看>>
我的Java开发学习之旅------>解惑Java进行三目运算时的自动类型转换
查看>>
【我的Android进阶之旅】解决strings.xml格式化占位符错误: Multiple substitutions specified in non-positional format...
查看>>
测试工程师常用的工具
查看>>
【已解决】如图,说我磁盘不够,看到var目录下有的个隐藏文件夹占了46G,不知道怎么删除...
查看>>
vmware网络的连接方式
查看>>
AngularJs的UI组件ui-Bootstrap分享(五)——Pager和Pagination
查看>>
Python基础21_类与类型, MRO, C3算法, super()
查看>>
IBM磁盘阵列及文件系统的管理
查看>>
Algs4-2.1.34罕见情况
查看>>
jQuery的属性操作
查看>>
BroadcastReceiver
查看>>
Python学习-字典的常见用法
查看>>
Python 异常处理
查看>>
前端 回顾
查看>>
按键精灵是否可以编写函数或方法,简化脚本,使脚本更加模块化?
查看>>
BZOJ3626LCA(树剖+线段树+LCA+差分)
查看>>