免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
楼主: hzqbbc
打印 上一主题 下一主题

[Mail] postfix.org.cn正式对外发布,并被Wietse收录于官方站内 [复制链接]

论坛徽章:
0
31 [报告]
发表于 2004-05-09 12:31 |只看该作者

postfix.org.cn正式对外发布,并被Wietse收录于官方站内

如果配置虚拟域支持.......不是不行.....难.....而且还有限制。

postfix所有的问题都解决了,就剩下maillist没有很好的办法。

from: http://zope.org/Members/bwarsaw/MailmanDesignNotes/VirtualHosting


  1. Virtual Hosting with Mailman
  2. Mailman 2.0 already has some support for virtual hosting, where a single Mailman installation servers lists for multiple domains. There are, however some problems with current virtual host support, and this page attempts to outline those problems, and give an overview of how I'd like to eventually improve the situation. It's not clear yet whether this will be added to Mailman 2.1 or pushed until Mailman 3.0.

  3. Mailman 2.0 approach
  4. In Mailman 2.0, each mailing list has essentially two attributes which control the virtual domain it appears in: web_page_url and host_name. web_page_url is used to form the base URL for all Mailman CGI scripts; an example is http://mail.python.org/mailman/ (note the required trailing slash). host_name is the domain part of the email address, i.e. the part to the right of the `@' sign, e.g. python.org.

  5. Note how web_page_url cannot always be calculated from the host_name, because one or the other may include additional host name parts. Thus, any virtual domain solution must allow both to be configured (although the default could be to calculate web_page_url from host_name).

  6. List-specific operations have no trouble knowing which virtual domain they're targetted for (although see the caveats below). Site-wide web operations such as a listinfo or admin overview, or (with Mailman 2.1alpha list creation) can be handled easily too, since the host name part of the url is taken as the virtual host to use. Command line scripts have a harder time though, because there's no cgi environment to glean virtual host information from; some scripts have options to specify the virtual host, and others will likely grow such options.

  7. The primary problem with all this is that list names must be unique across the entire site. For example, say you run mysite1.com and mysite2.com and these are virtually hosted. You cannot have two lists, called mylist@mysite1.com and mylist@mysite2.com. The only choice you have is to run two completely separate Mailman installations, each hosting just one of those domains. This sucks for ISPs? hosting tens or hundreds (or more!) virtual domains.

复制代码

原帖由 "hefish" 发表:
邮件列表我还不会配那。。。
hzq配好了说说大致步骤。。。。也让我学习学习。。。

论坛徽章:
0
32 [报告]
发表于 2004-05-09 12:35 |只看该作者

postfix.org.cn正式对外发布,并被Wietse收录于官方站内

嗯,很好。各位兄弟都会感谢您的。

原帖由 "skylove" 发表:
机器是单位的,但是因为我所在单位特殊,我对机器有绝对的控制权。

至于我不在单位干了或者其他事情的发生,这个概率大概比服务器被攻击而挂掉的概率还小。
至于数据部分,定期备份就好。。。这个才是王道,而不..........

论坛徽章:
0
33 [报告]
发表于 2004-05-09 12:45 |只看该作者

postfix.org.cn正式对外发布,并被Wietse收录于官方站内

楼上的老大。。。你就不能用ps把图片弄小点阿。。。。。那样更可爱。。。。

论坛徽章:
0
34 [报告]
发表于 2004-05-09 13:22 |只看该作者

postfix.org.cn正式对外发布,并被Wietse收录于官方站内

好吧,我编辑一下,sorry,各位兄弟。

关于maillist,我的建议:

postfix + qmail 强强联合

from: http://rhinofly.at.oss4e.org/index.php?showtopic=324



  1. 一直以来qmail和postfix是开源领域MTA的老大;他们都具有高性能,高安全性,广泛的开源文档支持等优点;然而相对而言,他们有各自的优缺点:qmail简单易用,对于新手容易上手,但是功能扩展相对受限,特别是现在qmail基本没有进一步的开发了;postfix一直以来则不断发展,各个方面相对qmail而言有不少改进,但是smtp验证和maillist则相当让人头疼。

  2. 为了扬长避短,我使用了postfix+qmail协作运行的架构,使用postfix作主MTA,使用qmail作maillist,有一个生产系统现在跑这样的结构:
  3. postfix (smtp)+ mysql (lookup table)+ courier-imap(pop3)+amavisd+sa(anti-virus+anti-spam) -- 这是前端标准系统,参考high5.net的howto,自己添加了amavisd及修改sasl部分;
  4. 这个前端系统负责对外接收邮件(包括发给maillist的)以及一般的虚拟邮件域管理。

  5. 另外安装一个qmail+vpopmail+qmailadmin(在同一台机时qmail-smptd在2525监听),这个上面只有maillist,没有除postmaster以外的用户;

  6. 举例来说,如果你有邮件域mydomaim.com,那么,postfix配置为负责处理该域邮件例如xyz@mydomain.com;

  7. 同时使用postfix的relaydomain和transport table将发给mylist@list.mydomain.com的信转交给在127.0.0.1:2525监听的qmail-smptd

  8. qmail中添加@list.mydomain.com邮件域,同时配置relayhost为127.0.0.1:25(即postfix smtpd)

  9. 如果你有多个邮件域,都可以类似配置;

  10. 如此,postfix负责一般邮件投递,qmail负责maillist分发(投递还是转交postfix)。

  11. 以上系统在debian sarge上实现,到目前运行半年,效果良好。
复制代码

论坛徽章:
0
35 [报告]
发表于 2004-05-09 16:30 |只看该作者

postfix.org.cn正式对外发布,并被Wietse收录于官方站内

[quote]原帖由 "rhinofly"][/quote 发表:

咔咔,非常好。支持啊。。。maillist可以考虑用楼上的方法哦!!!

论坛徽章:
0
36 [报告]
发表于 2004-05-09 17:09 |只看该作者

postfix.org.cn正式对外发布,并被Wietse收录于官方站内

postfix + mailman 应该还可以吧?不过我没做过。这里有一些 tips:

http://www.python.org/cgi-bin/faqw-mm.py?req=show&file=faq06.004.htp

论坛徽章:
0
37 [报告]
发表于 2004-05-09 18:24 |只看该作者

postfix.org.cn正式对外发布,并被Wietse收录于官方站内

虚拟域是没办法了,在3.0release之前。

原帖由 "dennis2" 发表:
postfix + mailman 应该还可以吧?不过我没做过。这里有一些 tips:

http://www.python.org/cgi-bin/faqw-mm.py?req=show&file=faq06.004.htp

论坛徽章:
0
38 [报告]
发表于 2004-05-09 23:32 |只看该作者

postfix.org.cn正式对外发布,并被Wietse收录于官方站内

先架一个起来啊。。。。

我自己的机器太烂了。。。。不然就贡献出来做maillist了。。。

主要是联想品牌机。。。硬盘贼烂。。。[线路倒是没有问题。。。就是机器烂。。]

论坛徽章:
0
39 [报告]
发表于 2004-05-09 23:48 |只看该作者

postfix.org.cn正式对外发布,并被Wietse收录于官方站内

http://www.worldhello.net/wiki/M/Mailman.htm

论坛徽章:
0
40 [报告]
发表于 2004-05-10 00:10 |只看该作者

postfix.org.cn正式对外发布,并被Wietse收录于官方站内

还是用这个?http://www.sympa.org/

这个是支持数据库的。。。subscriber的信息放在数据库里。。。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP