postfix邮件系统-note

Postfix邮件服务器原来图

wKioL1NF9cDBuzZJAACzn8Xxr0A686.jpg

实验环境

一台redhatenterprise 6.0 服务器

安装postfixdovecot

安装webmail

一台window8.1 3客户端

安装office 2013


服务器配置

停止sendmail

                  Pstree | grep sendmail

                  Service sendmail stop

                  Chkconfig sendmail off

                  Chkconfig --list sendmail

Pstree | grep sendmail

安装postfixdovecot

                  Rpm �Cqa | grep postfix

                  Yum �Cy install postfix* (25号端口发邮件)

                  Yum �Cy install dovecot* (110号端口收邮件)

配置postfix

                  Vi /etc/postfix/main.cf

                           Myhostname =mail.davy.org

                           Mydomain = davy.org

                           Myorigin = $myhostname

                           Myorigin = $mydomain

                           Inet_interfaces =all

                           Mydestination =$myhostname $mydomain

                           Mynetwork =192.168.100.0/24,127.0.0.0/8

                           Relay_domains= $mydestination

启动postfix

                  Service postfix restart

                  Netstat �Ctunpl | grep 25

                  Pstree | grep master

                  Chkconfig �Clevel 35 postfixon

                  Chkconfig �Clist | greppostfix

                  Alternatives �Cconfig mat (选择默认邮件服务器)

配置dovecot

        Vi /etc/dovecot.conf

                  Protocols =imap imaps pop3 pop3s

启动dovecot

Service postfix restart

                  Netstat �Ctunpl | grep 110

                  Pstree | grep dovecot

                  Chkconfig �Clevel 35 dovecoton

                  Chkconfig �Clist | grepdovecot

测试

创建系统账号(即邮件用户)

                  Useradd user1

                  Passwd user1

Useradd user2

                  Passwd user2

客户端配置邮箱


Linux里收发邮件

        telnet 192.168.100.1 25 (发邮件)

                  mail from:[email protected] (发件人)

                  rcpt to:[email protected](收件人)

                  data(内容)

                  root ->user1(内容部分)

                  .(结束)

                  Quit(退出)

        Mail (收邮件)

                  2 (选择)

                  d (删除)

        shell脚本

                  #! /bin/bash

                  #disk.sh

                  echo “the contents of thismail” | mail [email protected] �Cs “the object”



你可能感兴趣的:(postfix邮件系统-note)