免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3147 | 回复: 4
打印 上一主题 下一主题

[Mail] Linux 下安装Domino 做邮件服务器 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-07-05 11:58 |只看该作者 |倒序浏览
其实postfix+dovcot+postfixadmin等一堆opensource 也可以搭建一个好用的邮件服务器,参考http://linuxce.spaces.live.com/blog/cns!46EAC5B4D6FF6B5D!470.entry
不过Domino 也有优势,方便与办公系统集成,证书机制有高安全性,Domino 成熟的复制机制适合通过低速网络与分支机构交换数据,有rich gui 的客户端和web端,简单的sametime 集成方便公司内部沟通
在ibm 公司网站有试用版下载
Domino server  不能在root 下运行,安装前要先建一个帐号和组notes,另外,如果要安装smtp/pop3/imap 功能,需要停止本地的sendmail 服务
安装过程没有难度,一路next 就可以了
安装程序支持命令行安装,若要使用X ,可以使用 x11 forwading, 在linux 下, ssh 带参数 –X , 在 windows 下, 用putty+X-deep/32
第一次配置要使用普通帐号notes, 并且要使用X 图形界面
cd /local/notesdata
/opt/ibm/lotus/bin/server
启动配置程序,生成地址本和根证书
剩下的就可以通过domino admin 来管理了
在internet 上放mail 服务,少不了要做验证限制,这篇文章写得很细了http://www.ibm.com/developerworks/lotus/documentation/d-ls-smtpauth/
要点是把smtp(25) 的authentication 选为yes,如下图

webmail 的设置
使用Domino Web Server Configuration 〖domcfg5.ntf〗为模板创建一个名为〖domcfg.nsf〗的数据库
使用Domino iNots 〖iwaredir.ntf〗数据库模板创建一个名为
〖iwaredir.nsf〗的数据库名可根据喜好随意设定。
点击确定完成数据库建立,系统将随后自动打开次数据库进行配置工
作。
在domcfg.nsf 建一个映射,Target Form 为本DWALogonForm
  
在服务器配置的http 部分〖主机名〗值为:http://mail.yourdomino.com
更改〖主页URL〗值为:/iwareidr.nsf?Open
最后写一个自动脚本

#! /bin/sh
#
# A startup script for the Lotus Domino 6 server
#
# description: This script is used to start the domino server as a background process.
#
# Usage /etc/init.d/domino start|stop  
# You should change the 3 following variables to reflect your environment.  
# DOM_HOME is the variable that tells the script where the Domino Data resides
DOM_HOME=/local/notesdata  
# DOM_USER is the Linux account used to run the Domino 6 server
DOM_USER=notes  
# DOM_PROG is the location of the Domino executables
DOM_PROG=/opt/ibm/lotus/bin  
# START: This is executed when you launch the command /etc/init.d/domino start
start() {
echo -n "Starting domino: "  
# When the Domino Controller runs, it creates a .jsc_lock file.
# If you've configured Domino to use the Domino Controller and the Server crashes then the ".jsc_lock" file is not deleted.
# When the system reboots and starts Domino, it will fail because of the existing .jsc_lock file.
# Here we want to ensure that we delete the file if it's there before Domino starts
if [ -f $DOM_HOME/.jsc_lock ]; then
rm $DOM_HOME/.jsc_lock
fi
cd $DOM_HOME  
# The script must be launched by root.
# Here we become the notes user and we launch the Domino Server with the Domino Controller (-jc) enabled.
# To launch the Server without Domino Controller use the line:
# su $DOM_USER -c "$DOM_PROG/server > /dev/null 2>&1 &"
# Start Domino as a background process
su $DOM_USER -c "$DOM_PROG/server -jc -c > /dev/null 2>&1 &"
return 0
}  
# STOP: This is executed when you launch the command /etc/init.d/domino stop
stop() {
echo -n "Stopping domino: "
cd $DOM_HOME
# Here we become the notes user and we quit the Domino Server and the Domino Controller (-jc).
# To stop Domino when the Domino Controller is not enabled use the line:
# su $DOM_USER -c "$DOM_PROG/server -q"
# We pipe the Y into the command so Domino is shut down without needing to type "Y" on the terminal.
echo Y | su $DOM_USER -c "$DOM_PROG/server -jc -q"
return 0
}  
case "$1" in
start)
start
;;
stop)
stop
;;
*)
echo "Usage: domino {start|stop}"
exit 1
esac

论坛徽章:
8
综合交流区版块每周发帖之星
日期:2015-12-02 15:03:53数据库技术版块每日发帖之星
日期:2015-10-02 06:20:00IT运维版块每日发帖之星
日期:2015-10-02 06:20:00IT运维版块每日发帖之星
日期:2015-09-14 06:20:00金牛座
日期:2014-10-10 11:23:34CU十二周年纪念徽章
日期:2013-10-24 15:41:34酉鸡
日期:2013-10-19 10:17:1315-16赛季CBA联赛之北京
日期:2017-03-06 15:12:44
2 [报告]
发表于 2010-07-05 17:30 |只看该作者
Domino确实是非常不错的集成方案

论坛徽章:
0
3 [报告]
发表于 2010-07-21 17:28 |只看该作者
实际效果如何呀,楼主

论坛徽章:
0
4 [报告]
发表于 2010-08-04 12:52 |只看该作者
回复 3# firecpk
每天都在用,没有发现什么问题

论坛徽章:
0
5 [报告]
发表于 2010-08-12 12:47 |只看该作者
老大,这个脚本是编写成domino.sh直接放到/etc/init.d路径下面吗?
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP