1. 程式人生 > >Claros In Touch郵件客戶端配置

Claros In Touch郵件客戶端配置

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&amp;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的配置。謝謝大家的關注。