Installing Zarafa from Ubuntu Repository
From Zarafa wiki
Ddebyttere (Talk | contribs) |
m (add sudo creating vmail user, use tee for sudo append, changed aptitude to apt-get for greater idiot resilience) |
||
| Line 15: | Line 15: | ||
| - | Install mysql-server with | + | Install mysql-server with apt-get. |
| - | <pre>$ sudo | + | <pre>$ sudo apt-get install mysql-server</pre> |
| - | Added the ubuntu partners repository to the | + | Added the ubuntu partners repository to the apt sources.list. |
| - | <pre>$ | + | <pre>$ echo "deb http://archive.canonical.com/ubuntu lucid partner" | sudo tee -a /etc/apt/sources.list</pre> |
| - | Run | + | Run apt-get update to activate the newly added repository. |
| - | <pre>$ sudo | + | <pre>$ sudo apt-get update</pre> |
| - | Install Zarafa with | + | Install Zarafa with apt-get. |
| - | <pre>$ sudo | + | <pre>$ sudo apt-get install zarafa zarafa-webaccess zarafa-libs zarafa-licensed</pre> |
'''Note:''' zarafa-server will not start because it does not have the mysql password yet. | '''Note:''' zarafa-server will not start because it does not have the mysql password yet. | ||
| - | + | Specify the mysql root password in the /etc/zarafa/server.cfg configuration file. | |
<pre>$ sudo vi /etc/zarafa/server.cfg</pre> | <pre>$ sudo vi /etc/zarafa/server.cfg</pre> | ||
Install the Zarafa license. | Install the Zarafa license. | ||
| - | <pre>$ | + | <pre>$ echo "yourserial" | sudo tee -a /etc/zarafa/license/base</pre> |
Install the postfix mta. | Install the postfix mta. | ||
| - | <pre>$ sudo | + | <pre>$ sudo apt-get install postfix</pre> |
- Add to /etc/postfix/main.cf. | - Add to /etc/postfix/main.cf. | ||
| Line 51: | Line 51: | ||
Create the vmail user on the system. | Create the vmail user on the system. | ||
| - | <pre>adduser --system --no-create-home vmail</pre> | + | <pre>sudo adduser --system --no-create-home vmail</pre> |
Add the user vmail to the variable '''local_admin_users''' in /etc/zarafa/server.cfg. | Add the user vmail to the variable '''local_admin_users''' in /etc/zarafa/server.cfg. | ||
| Line 57: | Line 57: | ||
Restart apache to commit the changes zarafa made for webaccess. | Restart apache to commit the changes zarafa made for webaccess. | ||
<pre>$ sudo /etc/init.d/apache2 restart</pre> | <pre>$ sudo /etc/init.d/apache2 restart</pre> | ||
| - | |||
| - | |||
Restart postfix to commit the changes to postfix. | Restart postfix to commit the changes to postfix. | ||
Revision as of 08:49, 28 November 2010
| Article information | |
| |
| Applies to: | |
|---|---|
| Version(s) | 6.30.x, 6.40.x |
Since December 2009 the Zarafa Collaboration Platform is available in the Ubuntu Partner repository.
For a Fedora installation how-to please visit the Fedora Wiki, keep in mind that we do support Fedora and are not able to help you if any issues occur.
First do a clean install of Ubuntu Server 10.04
Install mysql-server with apt-get.
$ sudo apt-get install mysql-server
Added the ubuntu partners repository to the apt sources.list.
$ echo "deb http://archive.canonical.com/ubuntu lucid partner" | sudo tee -a /etc/apt/sources.list
Run apt-get update to activate the newly added repository.
$ sudo apt-get update
Install Zarafa with apt-get.
$ sudo apt-get install zarafa zarafa-webaccess zarafa-libs zarafa-licensed
Note: zarafa-server will not start because it does not have the mysql password yet.
Specify the mysql root password in the /etc/zarafa/server.cfg configuration file.
$ sudo vi /etc/zarafa/server.cfg
Install the Zarafa license.
$ echo "yourserial" | sudo tee -a /etc/zarafa/license/base
Install the postfix mta.
$ sudo apt-get install postfix
- Add to /etc/postfix/main.cf.
mailbox_command = /usr/bin/zarafa-dagent "$USER" mailbox_transport = zarafa: zarafa_destination_recipient_limit = 1
- Change mydestination to add your own maildomain in /etc/postfix/main.cf
Example:mydestination = hostname.local, example.com, localhost.hostname.local, localhost
- Add to /etc/postfix/master.cf.
zarafa unix - n n - 10 pipe
flags=DRhu user=vmail argv=/usr/bin/zarafa-dagent -R ${recipient}
Create the vmail user on the system.
sudo adduser --system --no-create-home vmail
Add the user vmail to the variable local_admin_users in /etc/zarafa/server.cfg.
Restart apache to commit the changes zarafa made for webaccess.
$ sudo /etc/init.d/apache2 restart
Restart postfix to commit the changes to postfix.
$ sudo /etc/init.d/postfix restart
Start the zarafa-server.
$ sudo /etc/init.d/zarafa-server start
Make a Zarafa tester user and also create this user on the system so it can receive the email.
$ sudo /usr/bin/zarafa-admin -c test -p password -e test@example.com -f "Zarafa Test"
To create the user, use the adduser command and follow the wizard.
$ sudo adduser test
Login on webaccess and check if mail can be sent/received.
