当前位置:网站首页>Simple configuration of postfix server
Simple configuration of postfix server
2022-07-03 17:04:00 【Brother Xing plays with the clouds】
Simple configuration PostFix The server
Installation package :
[[email protected] named]# yum install postfix telnet
[[email protected] named]# yum install bind bind-chroot
To configure DNS The server
[[email protected] named]# vi /etc/named.conf
options {
listen-on port 53 { any; };
listen-on-v6 port 53 { ::1; };
directory "/var/named";
dump-file "/var/named/data/cache_dump.db";
statistics-file "/var/named/data/named_stats.txt";
memstatistics-file "/var/named/data/named_mem_stats.txt";
allow-query { any; };
recursion yes;
dnssec-enable yes;
dnssec-validation yes;
dnssec-lookaside auto;
/* Path to ISC DLV key */
bindkeys-file "/etc/named.iscdlv.key";
};
logging {
channel default_debug {
file "data/named.run";
severity dynamic;
};
};
zone "." IN {
type hint;
file "named.ca";
};
include "/etc/named.rfc1912.zones";
[[email protected] named]# vi /etc/named.rfc1912.zones
add to
zone "testmail.com" IN {
type master;
file "named.testmail.com";
allow-update { none; };
};
[[email protected] named]# cp /var/named/named.localhost /var/named/chroot/var/named/named.testmail.com
[[email protected] named]# cat /var/named/chroot/var/named/named.testmail.com
$TTL 1D
@ IN SOA @ root (
0 ; serial
1D ; refresh
1H ; retry
1W ; expire
3H ) ; minimum
NS @
A 127.0.0.1
AAAA ::1
mail.testmail.com. IN A 192.168.1.11
testmail.com. MX 10 mail.testmail.com.
[[email protected] named]# service named restart
Stopping named: . [ OK ]
Starting named: [ OK ]
modify postfix Configuration file for
[[email protected] named]# vi /etc/postfix/main.cf
Modify the following parameters
myhostname = mail.testmail.com
mydomain = testmail.com
myorigin = $mydomain
inet_interfaces = all
inet_protocols = all
mydestination = myhostname, localhost.mydomain, localhost,
mynetworks = 192.168.1.0/24, 127.0.0.0/8
relay_domains = $mydestination
[[email protected] ~]# service postfix restart
Shutting down postfix: [ OK ]
Starting postfix: [ OK ]
[[email protected] ~]# useradd test001
[[email protected] ~]# useradd test002
Send E-mail
[[email protected] named]# telnet 192.168.1.11 25
Trying 192.168.1.11...
Connected to 192.168.1.11.
Escape character is '^]'.
220 mail.testmail.com ESMTP Postfix
mail from:[email protected]
250 2.1.0 Ok
rcpt to:[email protected]
250 2.1.5 Ok
data
354 End data with <CR><LF>.<CR><LF>
hello test002!!!
.
250 2.0.0 Ok: queued as 12623A0059
quit
221 2.0.0 Bye
Connection closed by foreign host.
Receiving mail
[[email protected] named]# su - test002
[[email protected] ~]$ mail
Heirloom Mail version 12.4 7/29/08. Type ? for help.
"/var/spool/mail/test002": 2 messages 1 new
1 [email protected] Mon Oct 13 02:53 15/517
>N 2 [email protected] Mon Oct 13 05:37 14/507
& r
undisclosed-recipients:; contains invalid character ':'
To: [email protected]@testmail.com wrote:
> hello test002!!!
边栏推荐
- CC2530 common registers
- [combinatorics] recursive equation (characteristic equation and characteristic root | example of characteristic equation | root formula of monadic quadratic equation)
- [2. Basics of Delphi grammar] 1 Identifiers and reserved words
- What material is sa537cl2? Analysis of mechanical properties of American standard container plate
- New library online | cnopendata complete data of Chinese insurance institution outlets
- 在iptables防火墙下开启vsftpd的端口
- One brush 145 force deduction hot question-2 sum of two numbers (m)
- CC2530 common registers for serial communication
- C语言按行修改文件
- Kotlin学习快速入门(7)——扩展的妙用
猜你喜欢

Atom QT 16_ audiorecorder
![[JDBC] API parsing](/img/75/0f69a4e246a571688355bb13e2cd73.jpg)
[JDBC] API parsing

New library online | cnopendata complete data of Chinese insurance institution outlets

Pools de Threads: les composants les plus courants et les plus sujets aux erreurs du Code d'affaires

线程池:业务代码最常用也最容易犯错的组件

The largest matrix (H) in a brush 143 monotone stack 84 histogram

Redis:关于列表List类型数据的操作命令

Shentong express expects an annual loss of nearly 1billion

What kind of material is 14Cr1MoR? Analysis of chemical composition and mechanical properties of 14Cr1MoR

Static program analysis (I) -- Outline mind map and content introduction
随机推荐
C language string inversion
[combinatorics] recursive equation (characteristic equation and characteristic root | example of characteristic equation | root formula of monadic quadratic equation)
美团一面:为什么线程崩溃崩溃不会导致 JVM 崩溃
图之深度优先搜索
Capacités nécessaires à l'analyse des données
基于主机的入侵系统IDS
word 退格键删除不了选中文本,只能按delete
MySQL single table field duplicate data takes the latest SQL statement
數據分析必備的能力
What is the material of 13mnnimor? 13mnnimor steel plate for medium and low temperature pressure vessels
Summary of three methods of PHP looping through arrays list (), each (), and while
[combinatorics] recursive equation (example 1 of recursive equation | list recursive equation)
How to promote cross department project collaboration | community essay solicitation
【Try to Hack】主动侦查隐藏技术
新库上线 | CnOpenData中国保险机构网点全集数据
网络安全web渗透技术
浅谈拉格朗日插值及其应用
ucore概述
Redis:关于列表List类型数据的操作命令
27. 输入3个整数,按从大到小的次序输出。要求用指针方法实现。