首先简单的介绍一下邮件系统,主要由两部分组成:smtp协议(简单邮件传输协议)
和pop3(邮局协议version
3),smtp用于邮件在网络中的传递(mailer),而pop处理
客户端邮件的接收。由于pop3的局限,将来肯定要被imap代替,imap有较好的目录
服务能力,可以在下载之前看到邮件的主要信息如来源、标题等,还可以远程删除
邮件等,但目前ISP还不会轻易用它来替换pop.注意不要与IAP的POP搞混淆了,那
是当前接入点的意思(Point Of
Present)。学得越多越糊涂:-(
最早在Linux传递邮件用的是smtp服务,在/etc/inetd.conf里可以看到这样一行:
#smtp stream tcp nowait root /usr/bin/smtpd smtpd
现在基本都用sendmail这样功能强大的deamon程序来做(nntp也是如此)。所以
sendmail只是邮件传递者(mailer),它把这个主机上的邮件发送到其他地方,注意
到配置DNS时有一项MX(Mail
eXchang,邮件网关),使用sendmail在你的网内要有一
个DNS服务器。而处理主机上远程客户的邮件服务则要有pop服务,查看inetd.conf
有这么几项:
pop-2
stream tcp nowait root /usr/sbin/tcpd ipop2d
pop-3 stream tcp nowait
root /usr/sbin/tcpd ipop3d
imap stream tcp nowait root
/usr/sbin/tcpd imap
再查看/etc/service就知道它们对应的端口号,用telnet host-name port试试能
看到什么?Linux这样的东西通常是用来做服务的,当然有很多人把它用作个人桌
面也不错,但是新手就不知道如何去收他们在ISP的邮件了,其实很简单,只需要
装个pop/imap的客户端软件就行了,netscape的套件就是很好的选择,KDE带的邮
件客户端软件也不错,支持多帐号,就是不直接支持中文(用zhXwin吧),或者用
fetchmail把邮件抓回来转发到本地主机的客户,在本地主机上用mail程序来读。
我感觉mail程序好象是直接处理邮件队列,不知对不对。使用mail程序问得最多
的问题是,在输入正文时怎么结束?另起一行输入一个"."就行了!
上面讲的是现在internet上的邮件系统,在internet出现以前电子邮件系统就有了,
比如在uucp/BBS上,还有其它类型的网络上,就在internet发达的今天,这样的网
络系统仍然与之并存。AOL、赢海威(IHWY)的网络上就不是标准的Internet电子邮件。
我以前就上过电信局的基于X.25网(准确的说应该是中国公用分组交换数据网CHINAPAC)
的电子邮件系统,优点是真正的帐号漫游,缺点是速度太慢(至多9600bps,x.25本来就
不快),后来承诺要建一个X.400网关与Internet上的邮件系统转发信件,也不知道后来
怎样了,因为我早已不用它,在IP over
everthing的今天......
关于mail list功能,可以用sendmail的别名来做,或者用专门的软件
href="http://infosite.heha.net/linux/ftp@ftp.greatcircle.com/pub/majordomo/default.htm">majordomo.
到中国自由软件库或者
href="http://ftp.swjtu.edu.cn/">swjtu.edu.cn上去可以搜寻到。它的FAQ由
href="http://www.cis.ohio-state.edu/~barr/default.htm">barr维护。
至于WebMail,可以到
href="http://www.perl.com/">http://www.perl.com/上找找有没有现成的CGI.现成的软件其实也很多
如WeMail,
href="http://www.lugs.ch/lugs/mitglieder/norbert.kuemin/wmf.html">WebMail
Folder,WebMail Module(Roxen),
href="http://www.fetchmail.com/">Fetchmail(也可以哟,商业性的)
href="http://horde.org/imp/default.htm">IMP(IMAP WebMail)以及
href="http://www.chaotika.net/code/HTMail">HTMail。
参考北京俱乐部的文章:
href="http://infosite.heha.net/linux/network/html/misc/network-sendmail_cf.html">配置文件sendmail.cf的简单解释。
href="http://infosite.heha.net/linux/network/html/misc/network-sendmail-bug.html">关于sendmail老版本的一个安全漏洞
href="http://infosite.heha.net/linux/network/html/misc/network-hotmail-bug.html">关于hotmail的安全漏洞
(做WebMail一定要参考一下!)
罗罗嗦嗦写了一堆,希望对新新手有所帮助,下面是一些问答集:
href="http://infosite.heha.net/linux/network/html/misc/sendmailabout.html#notify">如何禁止console下新邮件到达提示
href="http://infosite.heha.net/linux/network/html/misc/sendmailabout.html#start">pop3启动起来了吗?
href="http://infosite.heha.net/linux/network/html/misc/sendmailabout.html#account">如何建立一个邮件帐号?
href="http://infosite.heha.net/linux/network/html/misc/sendmailabout.html#cannot-send">为什么能收不能发邮件?
href="http://infosite.heha.net/linux/network/html/misc/sendmailabout.html#error-on-get">为什么突然不能收邮件?
href="http://infosite.heha.net/linux/network/html/misc/sendmailabout.html#pine">配置pine去收pop3邮件
href="http://infosite.heha.net/linux/network/html/misc/sendmailabout.html#big">sendmail如何据收大的信件?
href="http://infosite.heha.net/linux/network/html/misc/sendmailabout.html#about-dns-MX">DNS里相关设置的问题
href="http://infosite.heha.net/linux/network/html/misc/sendmailabout.html#MX-firewall">防火墙内外邮件网关的设置问题
href="http://infosite.heha.net/linux/network/html/misc/sendmailabout.html#redundancy">邮件服务器双备份的设置问题
href="http://infosite.heha.net/linux/network/html/misc/sendmailabout.html#multi-domain">sendmail支持多域名吗?
href="http://infosite.heha.net/linux/network/html/misc/sendmailabout.html#delete-mail">如何删除未发出的邮件?
href="http://infosite.heha.net/linux/network/html/misc/sendmailabout.html#raner-tips">raner写的tips
href="http://infosite.heha.net/linux/network/html/misc/sendmailabout.html#redhat5.1">Redhat
5.1文档里的相关部分
发信人: rudey (huihui), 信区: Linux
标题: Re: [求助]如何禁止新邮件到达提示?
发信站: BBS
水木清华站 (Mon Dec 7 01:00:38 1998)
: 比较烦人,可以去掉吗?
biff n
> 我做了LAN中的一个mail server(red hat 5.0 ,kernel
2.0.1),可为何只能在WIN95下用NETCAPE4.0发信,
> 而不能收信,它出现"pop3 server error"
信息。请问是否只需配置/etc/inetd.conf 和/etc/services
> 中pop3 服务,或还有别的配置?
另外如何判断我的server是否提供pop3服务,若没有,又请问如何配置
> (请详述程序安装和编译过程)?
到/usr/sbin下看一看有没有ipop3d, 如果没有的话就是你安装时偷懒没装,重装之。
实际上,安装RH5的时候,选择“Everything”,总共也没多少(6XXM+)又快又方便
(我只用9分钟),决不会出现你这种问题。
如果有的话,试一试telnet localhost 110, 没反应的话,应该是你的/etc/inetd.conf
有问题,
看看POP-3一行前面有没有#
注:简单地,用netstat -a | grep pop看看有没有下面的信息:
tcp 0 0
*:pop-2 *:* LISTEN
tcp
0 0 *:pop
*:* LISTEN
> 你好!我想做一个mailserver,但在建立pop3邮件服务器时,查到有qpopper与pop3d
>
两种服务程序可用,好象听说qpopper 能与window client相连,不过本人想比较具体
> 清楚二者有区别,请赐教!不胜感谢
没什么本质区别, pop-3协议极为简单,几百行程序而已,各种实现都差不多,犯不着为此
费心,高兴的话你可以自己写一个.
想知道区别的话,看看他们的源代码不就行了?想用好LINUX, 没有这点耐心和本事是不
行的.不要用各种"我是初学者..