%%%
%%% Authors:
%%%   Nils Franzn (nilsf@sics.se)
%%%   Simon Lindblom (simon@sics.se)
%%%
%%% Copyright:
%%%   Nils Franzn, 1998
%%%   Simon Lindblom, 1998
%%%
%%% Last change:
%%%   $Date: 1999-01-21 11:01:50 +0100 (Thu, 21 Jan 1999) $ by $Author: schulte $
%%%   $Revision: 10566 $
%%%
%%% This file is part of Mozart, an implementation
%%% of Oz 3
%%%    http://www.mozart-oz.org
%%%
%%% See the file "LICENSE" or
%%%    http://www.mozart-oz.org/LICENSE.html
%%% for information on usage and redistribution
%%% of this file, and for a DISCLAIMER OF ALL
%%% WARRANTIES.
%%%

How to use M-ICQ
----------------
If you want to start your own server, all you have to do (except
installing Mozart) is to edit the functor in "defaultsettings.oz". 
The functor exports 4 fields: url, pictureUrl, ticketFile and systemDir

url:        This is the URL that clients will find the ticket saved by 
            server

pictureUrl: This URL specify where all icons are loaded

ticketfile: This is the filename where the server saves the ticket, 
            make sure that 'ticketfile' correlates with the url-field 
            given above

systemdir:  This is a directory where the server will write the logfile
            and where snapshots of the database is stored

Then type "make" and "client.oza" and "server.oza" will be created. 
Run  the server by typing "ozengine server.oza" and you can then start 
the clients by typing "ozengine client.oza".

Enjoy!

/* The  functor in 'defaultsettings.oz' look like this

functor
export
   url:URL
   pictureUrl:PicturesURL
   ticketfile:TicketFile
   systemdir:SystemDir
define
   URL='http://www.sics.se/~nilsf/micq/ticket'
   TicketFile='/home/nilsf/public_html/micq/ticket'
   PicturesURL='http://www.sics.se/~nilsf/micq/pictures/'
   SystemDir='/home/nilsf/public_html/micq/system/'
end

*/
