当前位置:网站首页>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!!!
边栏推荐
- Necessary ability of data analysis
- Atom QT 16_ audiorecorder
- 浅谈拉格朗日插值及其应用
- What material is sa537cl2 equivalent to in China? Sa537cl2 corresponding material
- 大变局!全国房价,跌破万元大关
- Assembly instance analysis -- screen display in real mode
- CC2530 common registers
- 关于学习Qt编程的好书精品推荐
- SVN完全备份svnadmin hotcopy
- One brush 145 force deduction hot question-2 sum of two numbers (m)
猜你喜欢
Talk about several methods of interface optimization
Atom QT 16_ audiorecorder
What kind of material is 14Cr1MoR? Analysis of chemical composition and mechanical properties of 14Cr1MoR
NLP four paradigms: paradigm 1: fully supervised learning in the era of non neural networks (Feature Engineering); Paradigm 2: fully supervised learning based on neural network (Architecture Engineeri
What material is sa537cl1? Sa537cl1 corresponds to the national standard material
NLP四范式:范式一:非神经网络时代的完全监督学习(特征工程);范式二:基于神经网络的完全监督学习(架构工程);范式三:预训练,精调范式(目标工程);范式四:预训练,提示,预测范式(Prompt工程)
2022.02.14_ Daily question leetcode five hundred and forty
Kotlin学习快速入门(7)——扩展的妙用
[combinatorics] non descending path problem (number of non descending paths with constraints)
New library online | cnopendata complete data of Chinese insurance institution outlets
随机推荐
What material is sa537cl1? Sa537cl1 corresponds to the national standard material
建立自己的网站(23)
Informatics Olympiad all in one YBT 1175: divide by 13 | openjudge noi 1.13 27: divide by 13
Squid service startup script
Visual studio "usually, each socket address (Protocol / network address / port) can only be used once“
CC2530 common registers for timer 1
RF analyze demo build step by step
[combinatorics] polynomial theorem (polynomial theorem | polynomial theorem proof | polynomial theorem inference 1 item number is the number of non negative integer solutions | polynomial theorem infe
mysql用户管理
Bcvp developer community 2022 exclusive peripheral first bullet
Depth first search of graph
Hands on in-depth learning notes (XIV) 3.7 Simple implementation of softmax regression
New library online | cnopendata China bird watching record data
[Jianzhi offer] 64 Find 1+2+... +n
The most complete postman interface test tutorial in the whole network, API interface test
Assembly instance analysis -- screen display in real mode
LeetCode 1657. Determine whether the two strings are close
Static program analysis (I) -- Outline mind map and content introduction
數據分析必備的能力
简单配置PostFix服务器