aboutsummaryrefslogtreecommitdiff
path: root/mail/sympa/files/pkg-message.in
blob: e26337baa62aaba3990b67112976faa5e04fe654 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
If this is your first installation of sympa, please load
this file with your %%DB_TYPE%% database client:
    %%PREFIX%%/libexec/sympa/create_db.%%DB_TYPE%%

Before configuring sympa, you need to copy the samples:
    cp /usr/local/etc/sympa.conf.sample /usr/local/etc/sympa.conf
    cp /usr/local/etc/wwsympa.conf.sample /usr/local/etc/wwsympa.conf

To configure sympa interactively, please run:
    perl %%PREFIX%%/libexec/sympa/sympa_wizard.pl

You may also manually edit the two configuration files:
    %%PREFIX%%/etc/sympa.conf
    %%PREFIX%%/etc/wwsympa.conf

To set up the wwsympa server, add something like this to
your Apache configuration file:

    DocumentRoot "%%DATADIR%%"
    AddDefaultCharset UTF-8
    DirectoryIndex wws
    Options +Indexes
%%FCGI%%    LoadModule fastcgi_module libexec/apache2/mod_fastcgi.so
%%FCGI%%    <Location /wws>
%%FCGI%%        SetHandler fastcgi-script
%%FCGI%%    </Location>
    <Directory %%DATADIR%%>
        Allow from all
    </Directory>
    <Directory %%PREFIX%%/libexec/sympa>
        Allow from all
    </Directory>
    ScriptAlias /wws %%PREFIX%%/libexec/sympa/wwsympa-wrapper