zimbra修改

1.zimbra不紧紧是一个web应用,是一个直接可运行的系统。在14机器结构如下:

/opt/zimbra:

bin/启动zimbra的文件

jetty:zimbra的Web服务器

java:zimbra的Java环境

memcache:缓存

httpd:apache httpd服务器

mysql:数据库

等。

启动zimbra命令:

/opt/zimbra/bin/zmcontrol stop

/opt/zimbra/bin/zmcontrol start

邮件系统的启动:

/opt/zimbra/bin/zmmailboxdctl stop

/opt/zimbra/bin/zmmailboxdctl start

/opt/zimbra/bin/zmmailboxdctl restart

2.zimbra修改内容

2.1 jsp文件:目录为/opt/zimbra/jetty/webapps/zimbra/public/

如修改login.jsp,将图片和商标的html去掉。

其他jsp文件暂时还没细读。

2.2 修改国际化中文编码

编码文件路径:zimbra/WEB-INF/classes/messages/*_zh_CN.properties

操作,先将unicode编码的文件转为中文,然后修改后再进行编码 native2ascii -reverse ZaMsg_zh_CN.properties a.txt 修改完a.txt后: native2ascii a.txt ZaMsg_zh_CN.properties

2.3 linux下修改全部文件内容(此文件会替换全部文件夹下的文字。不能在类文件夹上使用,会把class文件的内容也替换掉。导致类文件检验出错)

http://www.zimbra.com 替换为http://www.logerp.com : find -type f | xargs perl -i -pe s%http://www.zimbra.com%http://www.logerp.com%g

2.4 skin的修改:

对应skin文件夹下,图标在skin/yahoo/logos,(其中yahoo为你选择的页面样式),每个样式下都有logos文件夹,可以进行替换图片。

3.源码

源码需要到网上下载,但是文件比较多,还没有进行编译和调试。

对代码阅读了一下,

3.1 skin对应请求为SkinResource.java(servlet),接受css/,html/的请求

然后读取后台skin文件夹的配置文件:skin/yahoo/base:

mainfest.xml,skin.css,skin.html,skin.properties

在请求资源时,根据配置文件对内容进行替换。

3.2 properties2javascript

国际化通过Props2JsServlet.java实现。

4.由于把/webapps/zimbra修改为/webapps/logerp后,需要改动很多文件,故出现了一些问题。导致应用无法启动。 经过排查。是在linux下执行替换文件时,把class文件,jar包里面的文字也改掉了,导致无法无法启动。 通过替换备份的文件。现在已经启动成功。 如果需要修改,请先备份,再做修改。

5.请求处理流程

a.进入/zimbra/进入SetHeadFilter,并转发到/service/user或/service/home请求

b./service/home对应UserServlet

c.UserServlet处理完毕后,调用不同的formater,对应网站就是HtmlFormater,跳转/zimbra/h/rest路径下

d./zimbra/h/rest不是jsp页面,内容是大量jstl,包括自定义jstl,这块代码难以阅读。

e.jstl处理完后返回html,css,js,其中js,css会通过SkinFilter进行替换,支持不同样式与中文

6.zimbra 前端视图

zimbra页面大量使用jstl生成页面:

1.jsp页面:部分页面使用jsp页面与标签库,在public/*.jsp,如login.jsp页面

2.jstl,自定义标签库。如h/search,search使用app标签,app:view,app:convListView,app:overView

3.js……

今天着重对zimbra的首页进行研究,普通版首页路径:/zimbra/h/search,结合图片说明:

a./h/search代码:

< c:when test=”${context.isConversationSearch}”> < app:convListView context=”${context}”/ > < / c:when >

以上使用app:convListView显示页面

b.app:convListView对应tag为/WEB-INF/tag/conv/convListView.tag

代码:< app:view mailbox=”${mailbox}”

通过app:view显示

c.app:view为/WEB-INF/tag/infra/view.tag

view.tag代码使用

app:overView为左侧

d.中间内容为:< app:view mailbox=”${mailbox}”>< / app:view >内部标签

7.admin用户登陆:https://localhost:7071/zimbraAdmin/

zimbra创建新用户流程: .service/admin/soap/CreateAccountRequest //创建账户

证书导入: 1.keytool -import -file myca.cert -keystore %JAVA_HOME%\jre\lib\security\cacerts -file myca.cert -alias tomcat 2.此时命令行会提示你输入cacerts证书库的密码,你敲入changeit就行了,这是java中cacerts证书库的默认密码,

8.获得未读邮件数代码

Java代码 
  1. public int getInbox(String name, String password) throws Exception {
  2.   // 构造请求参数
  3.   HashMap<String, String> map = new HashMap<String, String>();
  4.   map.put(“client”, ”adsf”);// 此处不能设置mobile,原因未明
  5.   map.put(“loginOp”, ”login”);
  6.   map.put(“password”, password);
  7.   map.put(“username”, name);
  8.   StringBuffer bf = new StringBuffer();
  9.   for (Map.Entry<String, String> entry : map.entrySet()) {
  10.    bf.append(“&” + entry.getKey() + ”=”
  11.      + URLEncoder.encode(entry.getValue(), ”UTF-8″));
  12.   }
  13.   String query = bf.toString().substring(1);
  14.   // 创建url连接
  15.   URL url = new URL(“http://172.17.1.14/zimbra/”);
  16.   HttpURLConnection connection = (HttpURLConnection) url.openConnection();
  17.   connection.setDoInput(true);
  18.   connection.setDoOutput(true);
  19.   connection.setRequestProperty(“Host”, ”172.17.1.14″);
  20.   connection
  21.     .setRequestProperty(
  22.       ”User-Agent”,
  23.       ”Mozilla/5.0 (Windows; U; Windows NT 5.1; zh-CN; rv:1.9.1.6) Gecko/20091201 Firefox/3.5.6 GTBDFff GTB7.0″);
  24.   connection
  25.     .setRequestProperty(“Accept”,
  26.       ”text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8″);
  27.   connection.setRequestProperty(“Accept-Language”, ”zh-cn,zh;q=0.5″);
  28.   connection.setRequestProperty(“Accept-Encoding”, ”deflate”);
  29.   connection.setRequestProperty(“Accept-Charset”,
  30.     ”GB2312,utf-8;q=0.7,*;q=0.7″);
  31.   connection.setRequestProperty(“Keep-Alive”, ”300″);
  32.   connection.setRequestProperty(“Connection”, ”keep-alive”);
  33.   connection.setRequestProperty(“Referer”,
  34.     ”http://172.17.1.14/zimbra/?loginOp=logout&client=mobile”);
  35.   connection.setRequestProperty(“Cookie”, ”ZM_TEST=true”);
  36.   connection.setRequestMethod(“POST”);
  37.   // 输出数据
  38.   DataOutputStream output = new DataOutputStream(connection
  39.     .getOutputStream());
  40.   output.write(query.getBytes(“UTF-8″));
  41.   output.flush();
  42.   output.close();
  43.   // 读取信息
  44.   InputStream in = connection.getInputStream();
  45.   BufferedReader bufferedReader = new BufferedReader(
  46.     new InputStreamReader(in));
  47.   StringBuffer temp = new StringBuffer();
  48.   String line = bufferedReader.readLine();
  49.   while (line != null) {
  50.    temp.append(line).append(“\r\n”);
  51.    line = bufferedReader.readLine();
  52.   }
  53.   bufferedReader.close();
  54.   String ecod = connection.getContentEncoding();
  55.   if (ecod == null)
  56.    ecod = ”UTF-8″;
  57.   // 设置cookie
  58.   String cookie = ”";
  59.   Map<String, List<String>> headerFields = connection.getHeaderFields();
  60.   for (Map.Entry<String, List<String>> entry : headerFields.entrySet()) {
  61.    if (“Set-Cookie”.equals(entry.getKey())) {
  62.     for (String s : entry.getValue()) {
  63.      cookie = s.substring(0, s.indexOf(“;”));
  64.      break;
  65.     }
  66.    }
  67.   }
  68.   // 请求mobile页面
  69.   URL url2 = new URL(“http://172.17.1.14/zimbra/m/mofolders”);
  70.   HttpURLConnection connection2 = (HttpURLConnection) url2
  71.     .openConnection();
  72.   connection2.setDoInput(true);
  73.   connection2.setDoOutput(true);
  74.   connection2.setRequestProperty(“Cookie”, ”ZM_TEST=true;” + cookie);
  75.   connection2.setRequestMethod(“GET”);
  76.   // read in each character until end-of-stream is detected
  77.   InputStream in2 = connection2.getInputStream();
  78.   BufferedReader bufferedReader2 = new BufferedReader(
  79.     new InputStreamReader(in2));
  80.   StringBuffer temp2 = new StringBuffer();
  81.   String line2 = bufferedReader2.readLine();
  82.   String info = ”";
  83.   while (line2 != null) {
  84.    if (!”".equals(line2.trim())) {
  85.     line2 = new String(line2.trim().getBytes(), ecod);
  86.     // 截取收件箱行
  87.     if (line2.trim().startsWith(“收件”))
  88.      info = line2;
  89.     temp2.append(line2).append(“\r\n”);
  90.    }
  91.    line2 = bufferedReader2.readLine();
  92.   }
  93.   bufferedReader2.close();
  94.   // info = 收件箱(1)
  95.   // 其中1为收件箱未读数
  96.   if (info.indexOf(“(“) > 0) {
  97.    String num = info.substring(info.indexOf(“(“) + 1, info
  98.      .indexOf(“)”));
  99.    return Integer.parseInt(num);
  100.   } else
  101.    return 0;
  102.  }