summaryrefslogtreecommitdiffstats
path: root/network/zarafa/README.Slackware
diff options
context:
space:
mode:
author Niels Horn <niels.horn@gmail.com>2010-06-12 15:36:19 -0500
committer Robby Workman <rworkman@slackbuilds.org>2010-06-12 22:14:27 -0500
commit9cdde68e969edc7714bde53bf82b8a86f57700ca (patch)
treedfa8cb0278a316ef853d7b7464049a686d8c665d /network/zarafa/README.Slackware
parent8ccce2733043f24f7fb87f6c1fe47f8674b24b22 (diff)
downloadslackbuilds-9cdde68e969edc7714bde53bf82b8a86f57700ca.tar.gz
slackbuilds-9cdde68e969edc7714bde53bf82b8a86f57700ca.tar.xz
network/zarafa: Added (MS Exchange Server replacement)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'network/zarafa/README.Slackware')
-rw-r--r--network/zarafa/README.Slackware66
1 files changed, 66 insertions, 0 deletions
diff --git a/network/zarafa/README.Slackware b/network/zarafa/README.Slackware
new file mode 100644
index 0000000000..d86165b9d7
--- /dev/null
+++ b/network/zarafa/README.Slackware
@@ -0,0 +1,66 @@
+README.Slackware
+================
+
+This document gives some basic instructions on setting up Zarafa on Slackware
+
+1) Prepare your MySQL server
+----------------------------
+
+On your MySQL server, enter with an account with full privileges:
+
+ # mysql -u <your_account> -p<your_password>
+
+In MySQL, create the database and user:
+
+ mysql> create database zarafa;
+ mysql> grant all privileges on zarafa.* to zarafa@<your_server> identified by 'zarafa';
+ mysql> flush privileges;
+ mysql> quit
+
+You can change the name of the user and password as you please.
+
+2) Edit Zarafa configuration files
+----------------------------------
+
+The sample configuration files are installed in /etc/zarafa/
+Thera are files for the server, spooler, gateway, etc.
+
+Change at least the file server.cfg to the correct values for your MySQL
+server:
+
+ mysql_host (can be localhost is mysql is on the same box)
+ mysql_user (default is root, not a good idea)
+ mysql_password
+
+3) Starting and stopping services
+---------------------------------
+
+You can start and stop the zarafa services with the command:
+
+ # zarafa-<service> start | stop
+
+For instance:
+
+ # zarafa-server start
+
+Select the services you need to start and put the commands in
+/etc/rc.d/rc.local & /etc/rc.d/rc.local_shutdown
+
+4) Creating "public store"
+--------------------------
+
+To create the public store of shared folders, use:
+
+ # zarafa-admin -s
+
+5) Where to go from here
+------------------------
+
+With these steps, you have concluded the basic setup of Zarafa. For web
+access, install the zarafa-webaccess-ajax package.
+
+More documentation is available in the man-pages and from the Zarafa site:
+http://www.zarafa.com/content/documentation
+On this site, several manuals (including some translations) and whitepapers
+can be downloaded.
+