I almost have this running on Ubuntu 5.10. Once (or if) I get it all working, I'll try to document my process and share. Should work with Debian.
I can actually log into the web interface, but I haven't verified that everything works properly. I was able to send email from the user1 test account to my real email account. It pegged the CPU in the process for a minute or two, however, and threw an error up in the web gui:
Code:
msg - system failure: MessagingException
code - service.FAILURE
method - ZmCsfeCommand.invoke
detail - soap:Receiver
constructor -
function ZmCsfeException(msg, code, method, detail) {
if (arguments.length == 0) {
return;
}
AjxException.call(this, msg, code, method, detail);
}
toString -
function () {
return "ZmCsfeException";
}
dump -
function () {
return "AjxException: msg=" + this.msg + " code=" + this.code + " method=" + this.method + " detail=" + this.detail;
} This may be related to the problem I'm running into when I run "ant reset-the-world". When I do that, I get the following output:
Code:
(. . . lots of lines suppressed . . .)
[java] PASS 0121 1/1 37ms CreateContactRequest
[echo] Creating default search folders: user1@MYHOST
[java] Exception in thread "main" java.io.FileNotFoundException: data/soap/samplesearchfolders.xml (No such file or directory)
[java] at java.io.FileInputStream.open(Native Method)
[java] at java.io.FileInputStream.(FileInputStream.java:106)
[java] at com.zimbra.cs.util.ByteUtil.getContent(ByteUtil.java:86)
[java] at com.zimbra.soap.SoapTestHarness.runTests(SoapTestHarness.java:237)
[java] at com.zimbra.soap.SoapTestHarness.main(SoapTestHarness.java:197)
BUILD FAILED
/home/zimbra/zcs-src/ZimbraServer/build.xml:384: Java returned: 1 Note that MYHOST actually has my hostname in it.
Looks like I don't have a file, data/soap/samplesearchfolders.xml ...? Possibly other files as well?
Code:
root@hungan:/opt/zimbra/libexec # updatedb
root@hungan:/opt/zimbra/libexec # locate samplesearchfolders.xml
root@hungan:/opt/zimbra/libexec #
Code:
zimbra@hungan:~/zcs-src/ZimbraServer$ ls -la data/soap/
total 84
drwxr-xr-x 2 zimbra users 4096 Sep 20 18:59 .
drwxr-xr-x 4 zimbra users 4096 Sep 20 18:59 ..
-r--r--r-- 1 zimbra users 71640 Sep 20 18:59 samplecontacts.xml
zimbra@hungan:~/zcs-src/ZimbraServer$
Any ideas as to what I may have missed in the install process?