Claros In Touch是一个功能强大,多协议支持的webmail(Pop3/IMAP)系统。有个人信息管理的功能包括地址簿,日历,书签(可以存储整个网页),RSS阅读器。
版本介绍:claros in touch 2.1 没有日历功能。claros intouch 2.2 有日历功能。
最近项目中需要用到邮件,我在网上找了好到,还是觉得claros intouch的界面好看。
环境:tomcat6 , jdk1.7 ,claros In touch 2.2
从官网 http://www.claros.org/home.do.html 下载claros In touch 2.2 ,下载intouch.war包,放到tomcat6下启动之后建立数据库,claros Intouch包中有sql文件,导入刚刚建好的数据库中,此时并不能正常访问,还需要对config.xml文件进行配置,config.xml(路径为src/intouch2/webRoot/WEB-INF/config)
下面是我的配置,大家可以根据自己的需要进行配置,最重要的配置就是(server配置和数据库配置)
1.server配置
<servers>
<server>
<shortname>163</shortname>
<fetch-server>pop3.163.com</fetch-server>
<fetch-server-port>110</fetch-server-port>
<fetch-protocol>pop3</fetch-protocol>
<fetch-ssl>false</fetch-ssl>
<smtp-server>smpt.163.com</smtp-server>
<smtp-server-port>25</smtp-server-port>
<smtp-authenticated>true</smtp-authenticated>
<smtp-ssl>false</smtp-ssl>
<folder-namespace></folder-namespace>
</server>
</servers>
2.数据库配置
<db>
<id>file</id>
<database>jdbc:mysql://localhost:3306/intouch?useUnicode=true&characterEncoding=UTF-8</database>
<driver>com.mysql.jdbc.Driver</driver>
<login>root</login>
<password>root</password>
</db>
这样差不多也就配置完成了,此外登录邮箱是没有问题的,但是在发送邮件的(加附件)是没有办法发送的,因为claros Intouch本身是基于linux的,在config.xml里面的附件的文件路径配置也是针对linux的,我现在配置是在windows下,所以需要把<tmp-dir>/tmp</tmp-dir> 中的路径改为Windows下的绝对路径就好了。
到此为止已经配置好了,如果配置还有问题可以加我qq:986750100。欢迎一起来交流技术。
后期还会为大家详解邮件服务器Apache+James的配置。谢谢大家的关注。