在Fedora上建立自己的邮件服务器(4)
来源:天极Yesky 发布时间:2007-09-12 13:51:00
D.配置postfix.
1.主要是main.cf的配置。
virtual_alias_maps=mysql:/etc/postfix/mysql_virtual_alias_maps.cf
virtual_gid_maps=static:12345
virtual_mailbox_base=/usr/local/virtual
virtual_mailbox_domains=mysql:/etc/postfix/mysql_virtual_domains_maps.cf
virtual_mailbox_maps=mysql:/etc/postfix/mysql_virtual_mailbox_maps.cf
virtual_mailbox_limit=51200000
virtual_minimum_uid=12345
virtual_transport=virtual
virtual_uid_maps=static:12345
smtpd_sasl_auth_enable=yes
#smtpd_sasl_local_domain=$myhostname
smtpd_recipient_restrictions=permit_mynetworkspermit_sasl_authenticatedpermit_aut-h_destinationreject
smtpd_sasl_security_options=noanonymous
smtpd_client_restrictions=permit_sasl_authenticated
broken_sasl_auth_clients=yes
2.mysql_virtual_alias_maps.cf如下
user=postfix
password=postfix
hosts=localhost
dbname=postfix
table=alias
select_field=goto
where_field=username
3.mysql_virtual_domains_maps.cf如下
user=postfix
password=postfix
hosts=localhost
dbname=postfix
table=domain
select_field=description
where_field=domain
4.mysql_virtual_mailbox_maps.cf如下
user=postfix
password=postfix
hosts=localhost
dbname=postfix
table=mailbox
select_field=maildir
where_field=username
E.建立
[root@localhostroot]#mkdir/usr/local/virtual
[root@localhostroot]#chown-Rpostfix:postfix/usr/local/virtual
[root@localhostroot]#chmod-R751/usr/local/virtual
七、测试端口25
A.mysql>usepostfix
Readingtableinformationforcompletionoftableandcolumnnames
Youcanturnoffthisfeaturetogetaquickerstartupwith-A
Databasechanged
mysql>showtables;
+----------+
|Tables_in_postfix|
+----------+
|alias|
|domain|
|mailbox|
+----------+
3rowsinset(0.00sec)
mysql>INSERTINTOalias(username,goto)VALUES('postmaster@lansemail.com','tester@lansemail.com');
QueryOK,1rowaffected(0.08sec)
mysql>INSERTINTOdomain(domain,description)VALUES('lansemail.com','local:');QueryOK,1rowaffected(0.00sec)
mysql>INSERTINTOmailbox(username,password,home,maildir,name,domain,create_date,create_time)VALUES('tester','$1$pi.WVgBx$a3dUCzBnbY76jnZlqWQCQ/','/usr/local/virtual/','tester@lansemail.com/','tes-ter','lansemail.com','2003-11-19','21:24:00');QueryOK,1rowaffected(0.03sec)-
mysql>select*frommailbox
->;
+----+-----+---+----+-----+----+----+--+----+--+-+-+----+------+-------+----------+----+
|userid|username|password|home|maildir|name|uid|gid|quota|domain|create_date|cre-ate_time|change_date|change_time|last_access|passwd_lastchanged|status|
+----+-----+------------------+-----------+------------+----+----+----+----+--------+-------+-------+-------+-------+-------+----------+----+
||tester|$1$pi.WVgBx$a3dUCzBnbY76jnZlqWQCQ/|/usr/local/virtual/|tester@lansemail.com/|tester-|12345|12345||lansemail.com|2003-11-19|21:24:00|0000-00-00|00:00:00|0|0|1|
+----+-----+------------------+-----------+------------+----+----+----+----+--------+-------+-------+-------+-------+-------+----------+----+
1rowinset(0.11sec)
mysql>
这里用的username为tester,只是用来测试端口用的,正式使用一定要用全名tester@lansemail.com.否则信件收不到,信息如下
无法到达以下收件人:
'tester@lansemail.com',时间为21/11/200313:05
450<tester@lansemail.com>:Userunknowninlocalrecipienttable
B.[root@localhostpostfix]#telnetlocalhost25
Trying127.0.0.1...
Connectedtolocalhost.
Escapecharacteris'^]'.
220localhost.localdomainESMTPPostfix
ehlolocalhost
250-localhost.localdomain
250-PIPELINING
250-SIZE10240000
250-VRFY
250-ETRN
250-AUTHLOGINPLAINOTP
250-AUTH=LOGINPLAINOTP
250-XVERP
2508BITMIME
authplaindGVzdGVyAHRlc3RlcgB0ZXN0cHc=
235Authenticationsuccessful
quit
221Bye
Connectionclosedbyforeignhost.
[root@localhostpostfix]#telnetlocalhost25
Trying127.0.0.1...
Connectedtolocalhost.
Escapecharacteris'^]'.
220localhost.localdomainESMTPPostfix
ehlolocalhost
250-localhost.localdomain
250-PIPELINING
250-SIZE10240000
250-VRFY
250-ETRN
250-AUTHLOGINPLAINOTP
250-AUTH=LOGINPLAINOTP
250-XVERP
2508BITMIME
authlogin
334VXNlcm5hbWU6
dGVzdGVy-->username:tester(用printf'tester'|mmencode取得。)
334UGFzc3dvcmQ6
dGVzdHB3-->password:testpw
235Authenticationsuccessful
quit
221Bye
Connectionclosedbyforeignhost.
[root@localhostpostfix]#
猜你喜欢
- 8月29日消息 据国外网站报道,一个丑陋和简单的页面在其仅存的一周内,带来的转化率竟然高达其所替代页面的300%。有一位创意指导轻蔑地对待我
- 今天我先讲一种站点例子!(无版权问题的前提。)此教程的核心思想---广告位置与实际点击效果。文章内容为主的站点,先给大家看一个比较完美的例子
- 电子邮件翻译自英文的email或e-mail,它表示通过电子通讯系统进行信件的书写、发送和接收。今天使用的最多的通讯系统是互联网,同时电子邮
- 我的虚拟机总是各种连不上网,每次都要折腾一番。现在我把虚拟机连不上网的原因总体排查一下,按照流程一步步来,基本上可以解决大部分人的问题。首先
- Windows2003服务器安装及设置教程好久没有更新了,正好最近上了一台服务器,正好把剩下的几篇补全,今天先说的是MSSQL安全篇第二篇—
- 在网络营销实战密码读者交流网站上,一个朋友问了一个关于首页链接的问题:“关于网站的逻辑结构,应该是和树型物理结构相吻合,也就是也就是由首页到
- VirtualBox主机虚拟机互通的实现方法,供大家参考,具体内容如下首先使用的是桥接模式,桥接模式相当于是使用Hub来把主机以及虚拟机进行
- 10月29日消息,华硕电脑与NVIDIA、交大合作开发出全球最快、体积最小的单机超级电脑,抢攻企业用户伺服器市场,华硕伺服器部门也成立专属团
- 百度指数(index.baidu.com)是百度搜索推出的一个用于分析关键词热度的工具,对站长的SEO策划非常有帮助。网趣在线将从各个方面挖
- 今天,收到Google Ad Planner小组发来的邮件,说我已经被接受为Google Ad Planner的beta测试员,可以登录提前
- 如果没有任何经验,学习如何扩展一个网站是相当困难的。假设现在你有很多像highscalability.com那样网站,你需要一些好的解决方案
- 据spreadfirefox的消息,Mozilla Firefox 3发布时间暨下载日终于到来了,Mozilla Firefox3于美国西部
- 有网友在微博上爆料,发现百度网站上有严重漏洞,不仅可以创建文件夹,还可以上传内容上去。据了解,这个漏洞实际上是由于fckeditor编辑器造
- 一、Ubuntu Server 18.04.5 LTS系统安装Ubuntu分为桌面版(desktop)和服务器版(Server),下面为大家
- 购买HostMonster美国主机非常简单,购买的过程也很简单。HostMonster主机可以用信用卡支付,也可以用PayPal支付。下面以
- 前言当系统空间使用量过大需要清理空间或者清理某个文件时,有时会出现执行了删除命令之后磁盘空间并没有释放,很多人首次遇到该情况时会比较困惑,在
- 新做了一个资料类的网站,因为女朋友从事的职业的关系,老是让我给她找资料,也发现了很多资料网站的问题,这里谈一下自己对资料网站的看法:1.既然
- 小编日前发现,美国搜索巨头Google开始实施“更有进攻性”的搜索广告策略,具体是在搜索结果的顶部显示关键词广告,将广告和搜索结果“在视觉上
- 很多新站长都在为自己的网站推广而头痛,寻求友情链接,提交网站目录,搜索引擎,忙乎了很久也不见什么效果。下面就我对自己的网站推广和公司网站推广
- 许多web浏览器都比IE更易于使用,并且不会那么容易就受到黑客和其它威胁的攻击。 大家似乎很难想起来还有许多可以替代IE的web