Difference between revisions of "Kauzz-notes"
(New page: =Kauzz-Notes= ==Install ZimbraServer on Windows== This writing about ZCS 5.0.7. *install document ZimbraSever/docs/INSTALL-win.txt *note #required installation of specific OpenLDAP. #:d...) |
|||
Line 4: | Line 4: | ||
This writing about ZCS 5.0.7. | This writing about ZCS 5.0.7. | ||
− | * | + | *see installation document |
− | ZimbraSever/docs/INSTALL-win.txt | + | *:ZimbraSever/docs/INSTALL-win.txt |
*note | *note | ||
− | #required | + | #required Symas OpenLDAP Directory Services. |
− | #:download | + | #:download it here. http://www.symas.com/ |
#edit ZimbraServer/build.xml | #edit ZimbraServer/build.xml | ||
− | #:delete lines | + | #:delete follow lines because of not including required files. |
+ | <code> | ||
+ | |||
+ | <echo>Creating default search folders: ${account-to-inject.email}</echo> | ||
+ | <java classname="com.zimbra.common.soap.SoapTestHarness" fork="true" classpathref="class.path" | ||
+ | failonerror="true"> | ||
+ | <sysproperty key="SAMPLE_USER" value="${account-to-inject.email}"/> | ||
+ | <arg line="-s -f data/soap/samplesearchfolders.xml"/> | ||
+ | </java> | ||
+ | |||
+ | <echo>Importing files into Briefcase for ${account-to-inject.email}</echo> | ||
+ | <java classname="com.zimbra.cs.account.ProvUtil" fork="true" classpathref="class.path" failonerror="true"> | ||
+ | <arg line="impn ${account-to-inject.email} data/briefcase/user1 Briefcase"/> | ||
+ | </java> | ||
+ | |||
+ | </code> | ||
[[Category:Community Sandbox]] | [[Category:Community Sandbox]] |
Latest revision as of 15:51, 15 July 2008
Kauzz-Notes
Install ZimbraServer on Windows
This writing about ZCS 5.0.7.
- see installation document
- ZimbraSever/docs/INSTALL-win.txt
- note
- required Symas OpenLDAP Directory Services.
- download it here. http://www.symas.com/
- edit ZimbraServer/build.xml
- delete follow lines because of not including required files.
<echo>Creating default search folders: ${account-to-inject.email}</echo> <java classname="com.zimbra.common.soap.SoapTestHarness" fork="true" classpathref="class.path" failonerror="true"> <sysproperty key="SAMPLE_USER" value="${account-to-inject.email}"/> <arg line="-s -f data/soap/samplesearchfolders.xml"/> </java>
<echo>Importing files into Briefcase for ${account-to-inject.email}</echo> <java classname="com.zimbra.cs.account.ProvUtil" fork="true" classpathref="class.path" failonerror="true"> <arg line="impn ${account-to-inject.email} data/briefcase/user1 Briefcase"/> </java>