<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="fr">
		<id>https://wiki.kogite.fr/index.php?action=history&amp;feed=atom&amp;title=Install_Zimbra_5_sur_Etch</id>
		<title>Install Zimbra 5 sur Etch - Historique des versions</title>
		<link rel="self" type="application/atom+xml" href="https://wiki.kogite.fr/index.php?action=history&amp;feed=atom&amp;title=Install_Zimbra_5_sur_Etch"/>
		<link rel="alternate" type="text/html" href="https://wiki.kogite.fr/index.php?title=Install_Zimbra_5_sur_Etch&amp;action=history"/>
		<updated>2026-06-24T18:33:11Z</updated>
		<subtitle>Historique des versions pour cette page sur le wiki</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>https://wiki.kogite.fr/index.php?title=Install_Zimbra_5_sur_Etch&amp;diff=2131&amp;oldid=prev</id>
		<title>Frank le 20 janvier 2009 à 11:14</title>
		<link rel="alternate" type="text/html" href="https://wiki.kogite.fr/index.php?title=Install_Zimbra_5_sur_Etch&amp;diff=2131&amp;oldid=prev"/>
				<updated>2009-01-20T11:14:52Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Nouvelle page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Zimbra Collaboration Suite (ZCS) Open Source Edition v5.0 On Debian Etch&lt;br /&gt;
&lt;br /&gt;
http://www.howtoforge.net/zimbra-collaboration-suite-5.0-on-debian-etch&lt;br /&gt;
&lt;br /&gt;
Version 1.0&lt;br /&gt;
&lt;br /&gt;
Author: Oliver Meyer &amp;lt;o [dot] meyer [at] projektfarm [dot] de&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Last edited 02/06/2008&lt;br /&gt;
&lt;br /&gt;
This document describes how to set up the Zimbra Collaboration Suite (ZCS) Open Source Edition v5.0 on Debian Etch. The resulting system provides a full featured collaboration-suite with many features that I can't list all here - please have a look at the feature list. It also comes with a nice (themeable) AJAX web interface for administration and user access.&lt;br /&gt;
&lt;br /&gt;
This howto is a practical guide without any warranty - it doesn't cover the theoretical backgrounds. There are many ways to set up such a system - this is the way I chose.&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
1 Preparation&lt;br /&gt;
&lt;br /&gt;
Install a standard Debian Etch system and update it. I used a network installation (only standard system).&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
2 Hostname&lt;br /&gt;
&lt;br /&gt;
You have to assign the hostname to the server ip. It is very important that the fqdn entry appears before the hostname.&lt;br /&gt;
&lt;br /&gt;
    vi /etc/hosts&lt;br /&gt;
&lt;br /&gt;
It should look like this:&lt;br /&gt;
&lt;br /&gt;
    127.0.0.1 localhost.localdomain localhost&lt;br /&gt;
    192.168.0.110 server1.example.com server1&lt;br /&gt;
&lt;br /&gt;
    # The following lines are desirable for IPv6 capable hosts&lt;br /&gt;
    ::1 ip6-localhost ip6-loopback&lt;br /&gt;
    fe00::0 ip6-localnet&lt;br /&gt;
    ff00::0 ip6-mcastprefix&lt;br /&gt;
    ff02::1 ip6-allnodes&lt;br /&gt;
    ff02::2 ip6-allrouters&lt;br /&gt;
    ff02::3 ip6-allhosts&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Afterwards insert the hostname into the hostname file ...&lt;br /&gt;
&lt;br /&gt;
    echo server1.example.com &amp;gt; /etc/hostname&lt;br /&gt;
&lt;br /&gt;
... and reboot the system.&lt;br /&gt;
&lt;br /&gt;
    reboot&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When the system is up again, the output of the both commands ...&lt;br /&gt;
&lt;br /&gt;
    hostname&lt;br /&gt;
&lt;br /&gt;
... and ...&lt;br /&gt;
&lt;br /&gt;
    hostname -f&lt;br /&gt;
&lt;br /&gt;
... should be:&lt;br /&gt;
&lt;br /&gt;
    server1.example.com&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
3 DNS&lt;br /&gt;
&lt;br /&gt;
You need a running DNS server in your LAN that contains a valid A &amp;amp; MX record for this server - otherwise Zimbra won't work. I used another server (192.168.0.100) running mydns for this howto. Add the nameserver's IP to the resolve configuration:&lt;br /&gt;
&lt;br /&gt;
vi /etc/resolv.conf&lt;br /&gt;
&lt;br /&gt;
The nameserver on your LAN has to be the first entry. It should look like this:&lt;br /&gt;
&lt;br /&gt;
    nameserver 192.168.0.100&lt;br /&gt;
    nameserver 192.168.0.2&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
4 Exim&lt;br /&gt;
&lt;br /&gt;
Deinstall Exim - Zimbra comes with it's own mailserver.&lt;br /&gt;
&lt;br /&gt;
    apt-get remove --purge exim4 exim4-base exim4-config exim4-daemon-light&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
5 Needed packages&lt;br /&gt;
&lt;br /&gt;
Let's install some needed packages (maybe some of these packages are already installed on your system).&lt;br /&gt;
&lt;br /&gt;
    apt-get install libc6-i686 sudo libidn11 curl fetchmail libgmp3c2 libexpat1 libgetopt-mixed-perl libxml2 libstdc++6 libpcre3 libltdl3 ssh&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
6 Get Zimbra&lt;br /&gt;
&lt;br /&gt;
Please take a look at http://www.zimbra.com/community/downloads.html to see which is the latest version. Download and unpack it.&lt;br /&gt;
&lt;br /&gt;
    cd /tmp/&lt;br /&gt;
    wget http://files.zimbra.com/downloads/5.0.2_GA/zcs-5.0.2_GA_1975.DEBIAN4.0.20080130234700.tgz&lt;br /&gt;
    tar xvfz zcs-5.0.2_GA_1975.DEBIAN4.0.20080130234700.tgz&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
7 Install Zimbra&lt;br /&gt;
7.1 Start The Installation&lt;br /&gt;
&lt;br /&gt;
Be sure that no other services like sendmail, postfix or mysql are running!&lt;br /&gt;
&lt;br /&gt;
    cd /tmp/zcs-5.0.2_GA_1975.DEBIAN4.0.20080130234700  ### Note : on est à 5.0.9 le 10/09/08&lt;br /&gt;
    ./install.sh -l&lt;br /&gt;
&lt;br /&gt;
Read the license agreement and press &amp;quot;Enter&amp;quot; to continue. Zimbra will now check if all prequisites are installed on the system. The output should look like this:&lt;br /&gt;
&lt;br /&gt;
Checking for prerequisites...&lt;br /&gt;
NPTL...FOUND&lt;br /&gt;
sudo...FOUND sudo-1.6.8p12-4&lt;br /&gt;
libidn11...FOUND libidn11-0.6.5-1&lt;br /&gt;
fetchmail...FOUND fetchmail-6.3.6-1etch1&lt;br /&gt;
libpcre3...FOUND libpcre3-6.7+7.4-2&lt;br /&gt;
libgmp3c2...FOUND libgmp3c2-2:4.2.1+dfsg-4&lt;br /&gt;
libxml2...FOUND libxml2-2.6.27.dfsg-2&lt;br /&gt;
libstdc++6...FOUND libstdc++6-4.1.1-21&lt;br /&gt;
openssl...FOUND openssl-0.9.8c-4etch1&lt;br /&gt;
libltdl3...FOUND libltdl3-1.5.22-4&lt;br /&gt;
Prerequisite check complete.&lt;br /&gt;
Checking for standard system perl...&lt;br /&gt;
perl-5.8.8...FOUND standard system perl-5.8.8&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
7.2 Select The Packages To Install&lt;br /&gt;
&lt;br /&gt;
Install zimbra-ldap [Y] Y&lt;br /&gt;
Install zimbra-logger [Y] Y&lt;br /&gt;
Install zimbra-mta [Y] Y&lt;br /&gt;
Install zimbra-snmp [Y] Y&lt;br /&gt;
Install zimbra-store [Y] Y&lt;br /&gt;
Install zimbra-apache [Y] Y&lt;br /&gt;
Install zimbra-spell [Y] Y&lt;br /&gt;
Install zimbra-proxy [N] N&lt;br /&gt;
&lt;br /&gt;
The system will be modified. Continue? [N] Y&lt;br /&gt;
&lt;br /&gt;
Now the packages are being installed - this could take a while.&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
7.3 Main Menu&lt;br /&gt;
&lt;br /&gt;
After the packages have been installed you'll see the main menu. It should look like this:&lt;br /&gt;
&lt;br /&gt;
Main menu&lt;br /&gt;
&lt;br /&gt;
1) Common Configuration:&lt;br /&gt;
2) zimbra-ldap: Enabled&lt;br /&gt;
3) zimbra-store: Enabled&lt;br /&gt;
+Create Admin User: yes&lt;br /&gt;
+Admin user to create: admin@server1.example.com&lt;br /&gt;
******* +Admin Password UNSET&lt;br /&gt;
+Enable automated spam training: yes&lt;br /&gt;
+Spam training user: spam.m0bqyoayc@server1.example.com&lt;br /&gt;
+Non-spam(Ham) training user: ham.ygch0qyz1@server1.example.com&lt;br /&gt;
+Global Documents Account: wiki@server1.example.com&lt;br /&gt;
+SMTP host: server1.example.com&lt;br /&gt;
+Web server HTTP port: 80&lt;br /&gt;
+Web server HTTPS port: 443&lt;br /&gt;
+Web server mode: http&lt;br /&gt;
+IMAP server port: 143&lt;br /&gt;
+IMAP server SSL port: 993&lt;br /&gt;
+POP server port: 110&lt;br /&gt;
+POP server SSL port: 995&lt;br /&gt;
+Use spell check server: yes&lt;br /&gt;
+Spell server URL: http://server1.example.com:7780/aspell.php&lt;br /&gt;
&lt;br /&gt;
4) zimbra-mta: Enabled&lt;br /&gt;
5) zimbra-snmp: Enabled&lt;br /&gt;
6) zimbra-logger: Enabled&lt;br /&gt;
7) zimbra-spell: Enabled&lt;br /&gt;
8) Default Class of Service Configuration:&lt;br /&gt;
r) Start servers after configuration yes&lt;br /&gt;
s) Save config to file&lt;br /&gt;
x) Expand menu&lt;br /&gt;
q) Quit&lt;br /&gt;
&lt;br /&gt;
Address unconfigured (**) items (? - help)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Points that are marked with asterisks to their left have to be configured manually. As you can see you have to set the admin password. Enter &amp;quot;3&amp;quot; (without the quotes) and press &amp;quot;Enter&amp;quot; to switch to the corresponding submenu. The output should look like this:&lt;br /&gt;
&lt;br /&gt;
Store configuration&lt;br /&gt;
&lt;br /&gt;
1) Status: Enabled&lt;br /&gt;
2) Create Admin User: yes&lt;br /&gt;
3) Admin user to create: admin@server1.example.com&lt;br /&gt;
** 4) Admin Password UNSET&lt;br /&gt;
5) Enable automated spam training: yes&lt;br /&gt;
6) Spam training user: spam.m0bqyoayc@server1.example.com&lt;br /&gt;
7) Non-spam(Ham) training user: ham.ygch0qyz1@server1.example.com&lt;br /&gt;
8) Global Documents Account: wiki@server1.example.com&lt;br /&gt;
9) SMTP host: server1.example.com&lt;br /&gt;
10) Web server HTTP port: 80&lt;br /&gt;
11) Web server HTTPS port: 443&lt;br /&gt;
12) Web server mode: http&lt;br /&gt;
13) IMAP server port: 143&lt;br /&gt;
14) IMAP server SSL port: 993&lt;br /&gt;
15) POP server port: 110&lt;br /&gt;
16) POP server SSL port: 995&lt;br /&gt;
17) Use spell check server: yes&lt;br /&gt;
18) Spell server URL: http://server1.example.com:7780/aspell.php&lt;br /&gt;
&lt;br /&gt;
Select, or 'r' for previous menu [r]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Enter &amp;quot;4&amp;quot; (without the quotes) and press &amp;quot;Enter&amp;quot; to modify the admin password. Now you'll be asked for the new password.&lt;br /&gt;
&lt;br /&gt;
Password for admin@server1.example.com (min 6 characters): [TR9Fm7uD]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
### Ici il est possible qu'il soit nécessaire de revalider la config ldap (choix 1) avant que tout lui paraisse OK&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Enter a desired password and press &amp;quot;Enter&amp;quot;. Afterwards press &amp;quot;Enter&amp;quot; to switch back to the main menu. The configuration is now complete and the output should look like this:&lt;br /&gt;
&lt;br /&gt;
Main menu&lt;br /&gt;
&lt;br /&gt;
1) Common Configuration:&lt;br /&gt;
2) zimbra-ldap: Enabled&lt;br /&gt;
3) zimbra-store: Enabled&lt;br /&gt;
4) zimbra-mta: Enabled&lt;br /&gt;
5) zimbra-snmp: Enabled&lt;br /&gt;
6) zimbra-logger: Enabled&lt;br /&gt;
7) zimbra-spell: Enabled&lt;br /&gt;
8) Default Class of Service Configuration:&lt;br /&gt;
r) Start servers after configuration yes&lt;br /&gt;
s) Save config to file&lt;br /&gt;
x) Expand menu&lt;br /&gt;
q) Quit&lt;br /&gt;
&lt;br /&gt;
*** CONFIGURATION COMPLETE - press 'a' to apply&lt;br /&gt;
Select from menu, or press 'a' to apply config (? - help)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Enter &amp;quot;a&amp;quot; (without the quotes) and press &amp;quot;Enter&amp;quot; to apply the configuration. You'll be asked a few questions - answer them as follows.&lt;br /&gt;
&lt;br /&gt;
Save configuration data to a file? [Yes] Enter&lt;br /&gt;
Save config in file: [/opt/zimbra/config.5422]&lt;br /&gt;
Saving config in /opt/zimbra/config.5422...done.&lt;br /&gt;
The system will be modified - continue? [No] Y&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Now Zimbra configures itself with the given configuration. This could take a while - the output should look like this:&lt;br /&gt;
&lt;br /&gt;
Operations logged to /tmp/zmsetup.02062008-135354.log&lt;br /&gt;
Setting local config values...done.&lt;br /&gt;
Setting up CA...done.&lt;br /&gt;
Creating SSL certificate...done.&lt;br /&gt;
Initializing ldap...done.&lt;br /&gt;
Setting replication password...done.&lt;br /&gt;
Setting Postfix password...done.&lt;br /&gt;
Setting amavis password...done.&lt;br /&gt;
Deploying CA to /opt/zimbra/conf/ca ...done.&lt;br /&gt;
Creating server entry for server1.example.com...done.&lt;br /&gt;
Setting spell check URL...done.&lt;br /&gt;
Setting service ports on server1.example.com...done.&lt;br /&gt;
Adding server1.example.com to zimbraMailHostPool in default COS...done.&lt;br /&gt;
Installing skins...&lt;br /&gt;
hotrod&lt;br /&gt;
lavender&lt;br /&gt;
waves&lt;br /&gt;
steel&lt;br /&gt;
sky&lt;br /&gt;
bones&lt;br /&gt;
yahoo&lt;br /&gt;
sand&lt;br /&gt;
lemongrass&lt;br /&gt;
beach&lt;br /&gt;
bare&lt;br /&gt;
done.&lt;br /&gt;
Setting zimbraFeatureIMEnabled=FALSE...done.&lt;br /&gt;
Setting zimbraFeatureTasksEnabled=TRUE...done.&lt;br /&gt;
Setting zimbraFeatureBriefcasesEnabled=TRUE...done.&lt;br /&gt;
Setting zimbraFeatureNotebookEnabled=TRUE...done.&lt;br /&gt;
Setting MTA auth host...done.&lt;br /&gt;
Setting TimeZone Preference...done.&lt;br /&gt;
Creating domain server1.example.com...done.&lt;br /&gt;
Creating user admin@server1.example.com...done.&lt;br /&gt;
Creating postmaster alias...done.&lt;br /&gt;
Creating user wiki@server1.example.com...done.&lt;br /&gt;
Creating user spam.m0bqyoayc@server1.example.com...done.&lt;br /&gt;
Creating user ham.ygch0qyz1@server1.example.com...done.&lt;br /&gt;
Setting spam training accounts...done.&lt;br /&gt;
Initializing store sql database...done.&lt;br /&gt;
Setting zimbraSmtpHostname for server1.example.com...done.&lt;br /&gt;
Initializing logger sql database...done.&lt;br /&gt;
Initializing mta config...done.&lt;br /&gt;
Configuring SNMP...done.&lt;br /&gt;
Setting services on server1.example.com...done.&lt;br /&gt;
Setting up zimbra crontab...done.&lt;br /&gt;
Setting up syslog.conf...done.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
After all you'll be asked if you want to notify Zimbra of your installation. Press &amp;quot;Enter&amp;quot; if you want to do that, or enter &amp;quot;N&amp;quot; (without the quotes) and press &amp;quot;Enter&amp;quot; if you disagree to that. Afterwards the system will be initialized - it should look like this:&lt;br /&gt;
&lt;br /&gt;
Starting servers...done.&lt;br /&gt;
Checking for deprecated zimlets...done.&lt;br /&gt;
Installing zimlets...&lt;br /&gt;
com_zimbra_date&lt;br /&gt;
com_zimbra_url&lt;br /&gt;
com_zimbra_cert_manager&lt;br /&gt;
com_zimbra_phone&lt;br /&gt;
com_zimbra_search&lt;br /&gt;
com_zimbra_local&lt;br /&gt;
com_zimbra_email&lt;br /&gt;
done.&lt;br /&gt;
Initializing Documents...done.&lt;br /&gt;
Restarting mailboxd...done.&lt;br /&gt;
&lt;br /&gt;
Moving /tmp/zmsetup.02062008-135354.log to /opt/zimbra/log&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Press &amp;quot;Enter&amp;quot; to exit. Let's look if all Zimbra services are running proper - switch to the Zimbra account ...&lt;br /&gt;
&lt;br /&gt;
su - zimbra&lt;br /&gt;
&lt;br /&gt;
... and enter the command:&lt;br /&gt;
&lt;br /&gt;
zmcontrol status&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The output should look like this:&lt;br /&gt;
&lt;br /&gt;
Host server1.example.com&lt;br /&gt;
antispam Running&lt;br /&gt;
antivirus Running&lt;br /&gt;
ldap Running&lt;br /&gt;
logger Running&lt;br /&gt;
mailbox Running&lt;br /&gt;
mta Running&lt;br /&gt;
snmp Running&lt;br /&gt;
spell Running&lt;br /&gt;
stats Running&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If one or more services have not been started, enter the command:&lt;br /&gt;
&lt;br /&gt;
zmcontrol start&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Switch back to the root account via:&lt;br /&gt;
&lt;br /&gt;
exit&lt;br /&gt;
8 Zimbra Web Interface&lt;br /&gt;
&lt;br /&gt;
I'll show you some screenshots, but no detailed information about the usage of the web interface - the possible settings are too extensive. Please have a look at the admin guide and the wiki.&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
8.1 Administration Console&lt;br /&gt;
&lt;br /&gt;
You can access the administration web interface via https://server1.example.com:7071/zimbraAdmin/ . Log in with the username &amp;quot;admin&amp;quot; (without the quotes) and the password that you assigned to this account at step 7.3.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
### NOTE : ATTENTION AU PARAMETRAGE PROXY DE FIREFOX : si le serveur ZIMBRA est sur le réseau local, penser à enlever son adresse (ou &amp;quot;.domaine.local&amp;quot;) du paramétrage réseau-proxy&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Welcome to the administration console - make yourself familar with it.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
(JavaScript must be enabled in your browser to view the large image as an image overlay.)&lt;br /&gt;
&lt;br /&gt;
If you want to have mail adresses like $user@example.com instead of $user@server1.example.com you have to create a new domain. Click on &amp;quot;Domains&amp;quot; in the main menu on the left side and afterwards on &amp;quot;New&amp;quot; in the window menu (Manage Domains).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
(JavaScript must be enabled in your browser to view the large image as an image overlay.)&lt;br /&gt;
&lt;br /&gt;
Enter &amp;quot;example.com&amp;quot; (without the quotes) as domain name, set the domain status to active and click on &amp;quot;Finish&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
JavaScript must be enabled in your browser to view the large image as an image overlay.)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
(JavaScript must be enabled in your browser to view the large image as an image overlay.)&lt;br /&gt;
&lt;br /&gt;
Click on &amp;quot;Accounts&amp;quot; in the main menu on the left side and afterwards on &amp;quot;New&amp;quot; in the window menu (Manage Accounts) to create a new user.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
(JavaScript must be enabled in your browser to view the large image as an image overlay.)&lt;br /&gt;
&lt;br /&gt;
A wizard will guide you through the creation of the new account. Take care that you select the right domain (example.com) for this account. Note: I created the account olli@example.com .&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
(JavaScript must be enabled in your browser to view the large image as an image overlay.)&lt;br /&gt;
&lt;br /&gt;
Afterwards mark the new account in the accounts-list and click on &amp;quot;Edit&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
(JavaScript must be enabled in your browser to view the large image as an image overlay.)&lt;br /&gt;
&lt;br /&gt;
Enter a desired password for the new account (Tab &amp;quot;General Information&amp;quot;) and click on &amp;quot;Save&amp;quot; in the window menu. Note: I chose &amp;quot;howtoforge&amp;quot; (without the quotes) as password.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
(JavaScript must be enabled in your browser to view the large image as an image overlay.)&lt;br /&gt;
&lt;br /&gt;
Log out and proceed with the next step.&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
8.2 User Access&lt;br /&gt;
&lt;br /&gt;
Open http://server1.example.com within your browser and log in with the user account that you created at step 8.1.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Make familar with the web interface.&lt;/div&gt;</summary>
		<author><name>Frank</name></author>	</entry>

	</feed>