3 commits - Administrator_Guide/en-US Administrator_Guide/Makefile Deployment_Guide/Makefile Installation_Guide/en-US Testing_Reference/en-US

Jeroen van Meeuwen vanmeeuwen at kolabsys.com
Sat Jun 11 12:46:00 CEST 2011


 Administrator_Guide/Makefile                                      |    2 
 Administrator_Guide/en-US/Administrator_Guide.xml                 |    4 
 Administrator_Guide/en-US/Book_Info.xml                           |    2 
 Administrator_Guide/en-US/Chapter.xml                             |   39 ---
 Administrator_Guide/en-US/Configuring_the_Kolab_Server.xml        |   90 +++++++
 Administrator_Guide/en-US/Verifying_the_Installation.xml          |   42 +++
 Administrator_Guide/en-US/part-Kolab_Server.xml                   |   11 
 Deployment_Guide/Makefile                                         |    2 
 Installation_Guide/en-US/Bootstrapping_the_Kolab_Installation.xml |  122 +++++++++-
 Installation_Guide/en-US/Installation_Guide.xml                   |    2 
 Installation_Guide/en-US/Kolab_Server_Installation.xml            |   82 ++++++
 Testing_Reference/en-US/Test_Suite_000-Overview.xml               |    2 
 Testing_Reference/en-US/Testing_Reference.xml                     |   12 
 13 files changed, 362 insertions(+), 50 deletions(-)

New commits:
commit 7c50f924db422c12b016fe924023f9b876f81abe
Author: Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen at kolabsys.com>
Date:   Sat Jun 11 11:45:29 2011 +0100

    Update to 2.4,
    Add notes on optimizing the web server with apc

diff --git a/Administrator_Guide/Makefile b/Administrator_Guide/Makefile
index 524c797..95a2f50 100644
--- a/Administrator_Guide/Makefile
+++ b/Administrator_Guide/Makefile
@@ -4,7 +4,7 @@ all: clean clean_ids
 	@publican build --langs=en-US --formats=html,html-single,pdf
 
 upload: all
-	@rsync -aHvz tmp/en-US/{html,html-single,pdf} hosted.kolabsys.com:./public_html/kolab-2.3-docs/$(PACKAGE)/
+	@rsync -aHvz tmp/en-US/{html,html-single,pdf} hosted.kolabsys.com:./public_html/kolab-2.4-docs/$(PACKAGE)/
 
 clean:
 	@publican clean
diff --git a/Administrator_Guide/en-US/Administrator_Guide.xml b/Administrator_Guide/en-US/Administrator_Guide.xml
index e99d144..b07c352 100644
--- a/Administrator_Guide/en-US/Administrator_Guide.xml
+++ b/Administrator_Guide/en-US/Administrator_Guide.xml
@@ -7,10 +7,7 @@
     <xi:include href="Book_Info.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
     <xi:include href="Preface.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
     <xi:include href="part-Kolab_Server.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-    <xi:include href="part-Kolab_Clients.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-    <xi:include href="Verifying_the_Installation.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-    <xi:include href="Configuring_the_Kolab_Server.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-    <xi:include href="Revision_History.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+    <!--    <xi:include href="part-Kolab_Clients.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />    --> <xi:include href="Revision_History.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
     <index />
 </book>
 
diff --git a/Administrator_Guide/en-US/Book_Info.xml b/Administrator_Guide/en-US/Book_Info.xml
index 3a15c74..01db0d3 100644
--- a/Administrator_Guide/en-US/Book_Info.xml
+++ b/Administrator_Guide/en-US/Book_Info.xml
@@ -7,7 +7,7 @@
     <title>Administrator Guide</title>
     <subtitle>short description</subtitle>
     <productname>Kolab</productname>
-    <productnumber>2.3</productnumber>
+    <productnumber>2.4</productnumber>
     <edition>0</edition>
     <pubsnumber>0</pubsnumber>
     <abstract>
diff --git a/Administrator_Guide/en-US/Configuring_the_Kolab_Server.xml b/Administrator_Guide/en-US/Configuring_the_Kolab_Server.xml
new file mode 100644
index 0000000..6843e77
--- /dev/null
+++ b/Administrator_Guide/en-US/Configuring_the_Kolab_Server.xml
@@ -0,0 +1,90 @@
+<?xml version='1.0' encoding='utf-8' ?>
+<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+<!ENTITY % BOOK_ENTITIES SYSTEM "Administrator_Guide.ent">
+%BOOK_ENTITIES;
+]>
+<chapter id="chap-Administrator_Guide-Configuring_the_Kolab_Server">
+    <title>Configuring the Kolab Server</title>
+    <para>
+        para
+    </para>
+    <section id="sect-Administrator_Guide-Configuring_the_Kolab_Server-Optimizing_the_Web_Server">
+        <title>Optimizing the Web Server</title>
+        <section id="sect-Administrator_Guide-Optimizing_the_Web_Server-Accelerating_PHP_with_APC">
+            <title>Accelerating PHP with APC</title>
+            <para>
+                Web server performance is greatly improved by caching the interpreted bytecode for the PHP applications using the Alternative PHP Cache (APC) extension from PECL. With APC enabled, PHP source code is compiled only once (per retention interval), and subsequent inclusions for or execution of said PHP source code is obtained directly from cache.
+            </para>
+            <para>
+                To enable APC, install the <application>php-pecl-apc</application> package:
+            </para>
+            <para>
+
+<screen># <userinput>yum -y install php-pecl-apc</userinput></screen>
+
+            </para>
+            <para>
+                Then, edit <filename>/etc/php.d/apc.ini</filename> and set or consider setting any of the following options;
+            </para>
+            <para>
+                <itemizedlist>
+                    <listitem>
+                        <formalpara id="form-Administrator_Guide-Accelerating_PHP_with_APC-apc.enabled1">
+                            <title><literal>apc.enabled=1</literal></title>
+                            <para>
+                                Enable APC (1), or disable APC (0)
+                            </para>
+
+                        </formalpara>
+
+                    </listitem>
+                    <listitem>
+                        <formalpara id="form-Administrator_Guide-Accelerating_PHP_with_APC-apc.stat0">
+                            <title><literal>apc.stat=0</literal></title>
+                            <para>
+                                Issue a <literal>stat()</literal> call to see if the file with PHP source code has changed since the last binary compilation. Disabling the <literal>stat()</literal> call is recommended for production environments, as calling <literal>stat()</literal> includes a write call to update the file's last access time (atime). Note that the update write call for the last access time can be prevented by mounting the relevant filesystem with the <literal>noatime</literal> option.
+                            </para>
+
+                        </formalpara>
+                        <note>
+                            <title>Changes to PHP Source Code Files with APC <literal>stat()</literal> Disabled</title>
+                            <para>
+                                Note that when APC is configured to not issue a <literal>stat()</literal> call to see if a PHP source code file is changed, changes to PHP source code files will only be included in subsequent execution after the APC cache has been cleared. The APC cache is cleared upon web server service reload, restart or using the PHP call <literal>apc_clear_cache()</literal>.
+                            </para>
+
+                        </note>
+
+                    </listitem>
+                    <listitem>
+                        <formalpara id="form-Administrator_Guide-Accelerating_PHP_with_APC-apc.stat_ctime1">
+                            <title><literal>apc.stat_ctime=1</literal></title>
+                            <para>
+                                When issuing a <literal>stat()</literal> call to see if the file with PHP source code has changed, use the file's change time attribute as opposed to the default, the file's modification time attribute.
+                            </para>
+
+                        </formalpara>
+
+                    </listitem>
+                    <listitem>
+                        <formalpara id="form-Administrator_Guide-Accelerating_PHP_with_APC-apc.include_once_override0">
+                            <title><literal>apc.include_once_override=0</literal></title>
+                            <para>
+                                While overriding the expensive system calls issued during an <literal>include_once()</literal> or <literal>require_once()</literal> call be the PHP source code, this option MUST NOT be enabled. See <ulink url="https://bugzilla.kolabsys.com/show_bug.cgi?id=113" /> for more information.
+                            </para>
+
+                        </formalpara>
+
+                    </listitem>
+
+                </itemizedlist>
+
+            </para>
+
+        </section>
+
+
+    </section>
+
+
+</chapter>
+
diff --git a/Administrator_Guide/en-US/Verifying_the_Installation.xml b/Administrator_Guide/en-US/Verifying_the_Installation.xml
new file mode 100644
index 0000000..c027db2
--- /dev/null
+++ b/Administrator_Guide/en-US/Verifying_the_Installation.xml
@@ -0,0 +1,42 @@
+<?xml version='1.0' encoding='utf-8' ?>
+<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+<!ENTITY % BOOK_ENTITIES SYSTEM "Administrator_Guide.ent">
+%BOOK_ENTITIES;
+]>
+<chapter id="chap-Administrator_Guide-Verifying_the_Installation">
+    <title>Verifying the Installation</title>
+    <para>
+        para
+    </para>
+    <para>
+        <itemizedlist>
+            <listitem>
+                <para>
+                    running services
+                </para>
+
+            </listitem>
+            <listitem>
+                <para>
+                    configuration file changes since the installation
+                </para>
+
+            </listitem>
+            <listitem>
+                <para>
+                    dumping all configuration variables
+                </para>
+
+            </listitem>
+            <listitem>
+                <para>
+                    verifying all files installed
+                </para>
+
+            </listitem>
+
+        </itemizedlist>
+
+    </para>
+</chapter>
+
diff --git a/Administrator_Guide/en-US/part-Kolab_Server.xml b/Administrator_Guide/en-US/part-Kolab_Server.xml
new file mode 100644
index 0000000..83e79df
--- /dev/null
+++ b/Administrator_Guide/en-US/part-Kolab_Server.xml
@@ -0,0 +1,11 @@
+<?xml version='1.0' encoding='utf-8' ?>
+<!DOCTYPE part PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+<!ENTITY % BOOK_ENTITIES SYSTEM "Administrator_Guide.ent">
+%BOOK_ENTITIES;
+]>
+<part id="part-Administrator_Guide-Kolab_Groupware_Server">
+    <title>Kolab Groupware Server</title>
+    <xi:include href="Verifying_the_Installation.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+    <xi:include href="Configuring_the_Kolab_Server.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+</part>
+


commit c88f8ad97e2e283cf91f3d3ef7319330e65a297c
Author: Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen at kolabsys.com>
Date:   Fri Apr 22 09:46:45 2011 +0100

    Move forward

diff --git a/Deployment_Guide/Makefile b/Deployment_Guide/Makefile
index 4e3c7d0..47fab14 100644
--- a/Deployment_Guide/Makefile
+++ b/Deployment_Guide/Makefile
@@ -4,7 +4,7 @@ all: clean clean_ids
 	@publican build --langs=en-US --formats=html,html-single,pdf
 
 upload: all
-	@rsync -aHvz tmp/en-US/{html,html-single,pdf} hosted.kolabsys.com:./public_html/kolab-2.3-docs/$(PACKAGE)/
+	@rsync -aHvz tmp/en-US/{html,html-single,pdf} hosted.kolabsys.com:./public_html/kolab-2.4-docs/$(PACKAGE)/
 
 clean:
 	@publican clean


commit 3ace96e92e34765b9387c3ce682f482f1622a484
Author: Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen at kolabsys.com>
Date:   Thu Apr 21 18:12:43 2011 +0100

    Check in updates to 2.3 documentation

diff --git a/Administrator_Guide/en-US/Administrator_Guide.xml b/Administrator_Guide/en-US/Administrator_Guide.xml
index 2056103..e99d144 100644
--- a/Administrator_Guide/en-US/Administrator_Guide.xml
+++ b/Administrator_Guide/en-US/Administrator_Guide.xml
@@ -6,7 +6,10 @@
 <book>
     <xi:include href="Book_Info.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
     <xi:include href="Preface.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-    <xi:include href="Chapter.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+    <xi:include href="part-Kolab_Server.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+    <xi:include href="part-Kolab_Clients.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+    <xi:include href="Verifying_the_Installation.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+    <xi:include href="Configuring_the_Kolab_Server.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
     <xi:include href="Revision_History.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
     <index />
 </book>
diff --git a/Administrator_Guide/en-US/Chapter.xml b/Administrator_Guide/en-US/Chapter.xml
deleted file mode 100644
index f9ce360..0000000
--- a/Administrator_Guide/en-US/Chapter.xml
+++ /dev/null
@@ -1,39 +0,0 @@
-<?xml version='1.0' encoding='utf-8' ?>
-<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY % BOOK_ENTITIES SYSTEM "Administrator_Guide.ent">
-%BOOK_ENTITIES;
-]>
-<chapter id="chap-Administrator_Guide-Test_Chapter">
-    <title>Test Chapter</title>
-    <para>
-        This is a test paragraph
-    </para>
-    <section id="sect-Administrator_Guide-Test_Chapter-Test_Section_1">
-        <title>Test Section 1</title>
-        <para>
-            This is a test paragraph in a section
-        </para>
-
-    </section>
-
-    <section id="sect-Administrator_Guide-Test_Chapter-Test_Section_2">
-        <title>Test Section 2</title>
-        <para>
-            This is a test paragraph in Section 2
-            <orderedlist>
-                <listitem>
-                    <para>
-                        listitem text
-                    </para>
-
-                </listitem>
-
-            </orderedlist>
-
-        </para>
-
-    </section>
-
-
-</chapter>
-
diff --git a/Installation_Guide/en-US/Bootstrapping_the_Kolab_Installation.xml b/Installation_Guide/en-US/Bootstrapping_the_Kolab_Installation.xml
index 50955d4..1e43032 100644
--- a/Installation_Guide/en-US/Bootstrapping_the_Kolab_Installation.xml
+++ b/Installation_Guide/en-US/Bootstrapping_the_Kolab_Installation.xml
@@ -137,7 +137,15 @@
     <section id="sect-Installation_Guide-Bootstrapping_the_Kolab_Installation-New_Kolab_Environment">
         <title>New Kolab Environment</title>
         <para>
-            Walk through kolab_bootstrap -b
+            Issue the following command to bootstrap a new Kolab environment with OpenLDAP as the LDAP server technology:
+        </para>
+        <para>
+
+<screen># <userinput>kolab_bootstrap -b</userinput></screen>
+
+        </para>
+        <para>
+            Follow the directions in this process.
         </para>
 
     </section>
@@ -145,7 +153,117 @@
     <section condition="enterprise" id="sect-Installation_Guide-Bootstrapping_the_Kolab_Installation-New_Kolab_Environment_with_Existing_LDAP">
         <title>New Kolab Environment with Existing LDAP</title>
         <para>
-            Walk through the requirements to the LDAP environment and a kolab_bootstrap
+            When not using the OpenLDAP server –but instead using a new deployment of a different LDAP server technology or perhaps an existing LDAP Directory Server deployment, kolab_bootstrap is not to be used.
+        </para>
+        <para>
+            Instead, the Kolab Groupware configuration file in <filename>/etc/kolab/kolab.conf</filename> can be manually supplied. A full reference of all settings available is in <filename>/etc/kolab/kolab.globals</filename>, most of which are settings for the platform. An overview of relevant settings to include in <filename>/etc/kolab/kolab.conf</filename> is in
+        </para>
+        <para>
+            <itemizedlist id="item-Installation_Guide-New_Kolab_Environment_with_Existing_LDAP-Basic_Settings_to_Include_in_etckolabkolab.conf">
+                <title>Basic Settings to Include in <filename>/etc/kolab/kolab.conf</filename></title>
+                <listitem>
+                    <formalpara id="form-Installation_Guide-Basic_Settings_to_Include_in_etckolabkolab.conf-fqdnhostname">
+                        <title><code>fqdnhostname</code></title>
+                        <para>
+                            The fully qualified hostname for this system.
+                        </para>
+
+                    </formalpara>
+
+                </listitem>
+                <listitem>
+                    <formalpara id="form-Installation_Guide-Basic_Settings_to_Include_in_etckolabkolab.conf-_is_master">
+                        <title> <code> is_master</code></title>
+                        <para>
+                            Whether this server is a Kolab master server or not. When using a different LDAP technology than OpenLDAP, or when using a directory tree external to Kolab, set this to <code>false</code>.
+                        </para>
+
+                    </formalpara>
+
+                </listitem>
+                <listitem>
+                    <formalpara id="form-Installation_Guide-Basic_Settings_to_Include_in_etckolabkolab.conf-base_dn">
+                        <title><code>base_dn</code></title>
+                        <para>
+                            The Base DN for the LDAP tree, for example <emphasis>dc=example,dc=org</emphasis>
+                        </para>
+
+                    </formalpara>
+
+                </listitem>
+                <listitem>
+                    <formalpara id="form-Installation_Guide-Basic_Settings_to_Include_in_etckolabkolab.conf-bind_dn">
+                        <title><code>bind_dn</code></title>
+                        <para>
+                            The <emphasis>distinguished name</emphasis> Kolab should use binding to the LDAP server.
+                        </para>
+
+                    </formalpara>
+
+                </listitem>
+                <listitem>
+                    <formalpara id="form-Installation_Guide-Basic_Settings_to_Include_in_etckolabkolab.conf-bind_pw">
+                        <title><code>bind_pw</code></title>
+                        <para>
+                            The password to use when binding.
+                        </para>
+
+                    </formalpara>
+
+                </listitem>
+                <listitem>
+                    <formalpara id="form-Installation_Guide-Basic_Settings_to_Include_in_etckolabkolab.conf-ldap_uri">
+                        <title><code>ldap_uri</code></title>
+                        <para>
+                            The URI to the LDAP server to use.
+                        </para>
+
+                    </formalpara>
+
+                </listitem>
+                <listitem>
+                    <formalpara id="form-Installation_Guide-Basic_Settings_to_Include_in_etckolabkolab.conf-php_dn">
+                        <title><code>php_dn</code></title>
+                        <para>
+                            The <emphasis>distinguished name</emphasis> to use to bind to the LDAP server, specifically for Kolab PHP process such as the Kolab mail filter.
+                        </para>
+
+                    </formalpara>
+
+                </listitem>
+                <listitem>
+                    <formalpara id="form-Installation_Guide-Basic_Settings_to_Include_in_etckolabkolab.conf-php_pw">
+                        <title><code>php_pw</code></title>
+                        <para>
+                            The password to use with the <xref linkend="form-Installation_Guide-Basic_Settings_to_Include_in_etckolabkolab.conf-php_dn" />.
+                        </para>
+
+                    </formalpara>
+
+                </listitem>
+                <listitem>
+                    <formalpara id="form-Installation_Guide-Basic_Settings_to_Include_in_etckolabkolab.conf-calendar_id">
+                        <title><code>calendar_id</code></title>
+                        <para>
+                            The ID for calendaring used with Resources. A user 'calendar at domain' will be created in LDAP and as a mailbox.
+                        </para>
+
+                    </formalpara>
+
+                </listitem>
+                <listitem>
+                    <formalpara id="form-Installation_Guide-Basic_Settings_to_Include_in_etckolabkolab.conf-calendar_pw">
+                        <title><code>calendar_pw</code></title>
+                        <para>
+                            The password to use for the <xref linkend="form-Installation_Guide-Basic_Settings_to_Include_in_etckolabkolab.conf-calendar_id" />.
+                        </para>
+
+                    </formalpara>
+
+                </listitem>
+
+            </itemizedlist>
+
         </para>
 
     </section>
diff --git a/Installation_Guide/en-US/Installation_Guide.xml b/Installation_Guide/en-US/Installation_Guide.xml
index 723694b..8b7bf9e 100644
--- a/Installation_Guide/en-US/Installation_Guide.xml
+++ b/Installation_Guide/en-US/Installation_Guide.xml
@@ -3,7 +3,7 @@
 <!ENTITY % BOOK_ENTITIES SYSTEM "Installation_Guide.ent">
 %BOOK_ENTITIES;
 ]>
-<book>
+<book status="draft">
     <xi:include href="Book_Info.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
     <xi:include href="Preface.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
     <xi:include href="part-Kolab_Server.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
diff --git a/Installation_Guide/en-US/Kolab_Server_Installation.xml b/Installation_Guide/en-US/Kolab_Server_Installation.xml
index 084242a..00eeaa3 100644
--- a/Installation_Guide/en-US/Kolab_Server_Installation.xml
+++ b/Installation_Guide/en-US/Kolab_Server_Installation.xml
@@ -398,6 +398,13 @@ deb-src http://mirror.kolabsys.com/pub/debian/kolab-&PRODUCT_VERSION;/ squeeze r
 deb-src https://mirror.kolabsys.com/debian/kolab-&PRODUCT_VERSION;/ squeeze release updates</screen>
 
                     </para>
+                    <note>
+                        <title>Updates in Testing Phase and Packages in Development</title>
+                        <para>
+                            Optionally, enable the <literal>updates-testing</literal> and <literal>development</literal> components for newer, but less stable packages.
+                        </para>
+
+                    </note>
                     <para>
                         For other versions of the Debian distribution, please replace <code>squeeze</code> with the corresponding distribution codename.
                     </para>
@@ -925,7 +932,7 @@ kolab-&PRODUCT_VERSION;-updates-testing-source
                     <note>
                         <title>Output Abbreviated</title>
                         <para>
-                            Note that the output is abbreviated for clarity. The output may actually include the description of the repository, whether the repository is enabled by default or not, and the number of packages available.
+                            Note that the output is abbreviated for clarity. The output may actually include the description of the repository, whether the repository is enabled by default or not, and the number of packages available in each repository as well as the total number of packages.
                         </para>
 
                     </note>
@@ -978,6 +985,79 @@ kolab-&PRODUCT_VERSION;-updates-testing-source
 
         </section>
 
+        <section id="sect-Installation_Guide-Installation_with_RPM_Packages-Installing_the_Kolab_Daemon">
+            <title>Installing the Kolab Daemon</title>
+            <para>
+                The Kolab daemon can be installed using the following command:
+            </para>
+            <para>
+
+<screen># <userinput>yum -y install kolabd</userinput></screen>
+
+            </para>
+            <para>
+                This will also install all the dependencies for the Kolab daemon, including but not limited to;
+            </para>
+            <para>
+                <itemizedlist>
+                    <listitem>
+                        <para>
+                            <application>cyrus-imapd</application>
+                        </para>
+
+                    </listitem>
+                    <listitem>
+                        <para>
+                            <application>openldap-clients</application>
+                        </para>
+
+                    </listitem>
+
+                </itemizedlist>
+
+            </para>
+
+        </section>
+
+        <section id="sect-Installation_Guide-Installation_with_RPM_Packages-Installing_the_Kolab_Web_Administration_Panel">
+            <title>Installing the Kolab Web Administration Panel</title>
+            <para>
+                The Kolab Web Administration Panel can be installed using the following command:
+            </para>
+            <para>
+
+<screen># <userinput>yum -y install kolab-webadmin</userinput></screen>
+
+            </para>
+
+        </section>
+
+        <section id="sect-Installation_Guide-Installation_with_RPM_Packages-Installing_the_Kolab_Web_Client">
+            <title>Installing the Kolab Web Client</title>
+            <para>
+                The Kolab Web Client (Horde) can be installed using the following command:
+            </para>
+            <para>
+
+<screen># <userinput>yum -y install kolab-webclient</userinput></screen>
+
+            </para>
+
+        </section>
+
+        <section id="sect-Installation_Guide-Installation_with_RPM_Packages-Installing_the_LDAP_Server">
+            <title>Installing the LDAP Server</title>
+            <para>
+                Since Kolab Groupware works based on LDAP, if you do not already have LDAP available, consider installing the OpenLDAP LDAP Server:
+            </para>
+            <para>
+
+<screen># <userinput>yum -y install openldap-server openldap-server-overlays</userinput></screen>
+
+            </para>
+
+        </section>
+
 
     </section>
 
diff --git a/Testing_Reference/en-US/Test_Suite_000-Overview.xml b/Testing_Reference/en-US/Test_Suite_000-Overview.xml
index d5ceaf2..d145c0b 100644
--- a/Testing_Reference/en-US/Test_Suite_000-Overview.xml
+++ b/Testing_Reference/en-US/Test_Suite_000-Overview.xml
@@ -50,7 +50,7 @@
 
     </section>
 
-    <section id="sect-Testing_Reference-Test_Suite_000_Overview-Test_000_001_Simple_Small_Standard">
+    <section id="sect-Testing_Reference-Test_Suite_000_Overview-Test_000_001_Simple_Small_amp_Standard">
         <title>Test 000-001: Simple, Small & Standard</title>
         <para>
             Actions:
diff --git a/Testing_Reference/en-US/Testing_Reference.xml b/Testing_Reference/en-US/Testing_Reference.xml
index d388b25..234e052 100644
--- a/Testing_Reference/en-US/Testing_Reference.xml
+++ b/Testing_Reference/en-US/Testing_Reference.xml
@@ -8,7 +8,17 @@
     <xi:include href="Preface.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
     <xi:include href="Introduction.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
     <xi:include href="part-Test_Suite_000.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+    <xi:include href="part-Test_Suite_001.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
     <xi:include href="Revision_History.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-    <index />
+    <index /><!--
+
+TODO:
+
+    - send message in horde
+    - list contacts
+    - add/edit/delete contact
+    - create contact group
+    - change password
+   //  -->
 </book>
 





More information about the commits mailing list