- 论坛徽章:
- 0
|
其实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 |
|