Change LICENSE in META to open_source
[app-fonbot-daemon.git] / config.pl
CommitLineData
8dc70d07
MG
1# OFTC
2# ====
3
4# Comment this out to disable the OFTC plugin
5$oftc_enabled = 1;
6
7# Nickname to use on OFTC
8$oftc_nick = 'fonbot';
9
10# Channels to join on OFTC
11@oftc_channels = ();
12
13# Password to identify to NickServ with
14$oftc_nickserv_password = 'asd';
15
16# BitlBee
17# =======
18
19# Comment this out to disable the BitlBee plugin
20$bitlbee_enabled = 1;
21
22# Nickname to use on BitlBee
23$bitlbee_nick = 'marius';
24
25# BitlBee server hostname
26$bitlbee_server = 'localhost';
27
28# BitlBee server port
29$bitlbee_port = 6667;
30
31# BitlBee server password
32$bitlbee_password = 'parola';
33
34# Common
35# ======
36
37# Directory to store state in
38$dir = '/home/marius/fonbotsrv';
39
40# Run fonbotd as this user
41$user = 'marius';
42
43# Run fonbotd as this primary group
44$group = 'marius';
45
46# Run fonbotd as these supplementary groups
47@supplementary_groups = ();
48
49# HTTPD
50# =====
51
52# Run the HTTPD on this port
53$httpd_port = 8888;
54
55# Read the authentication data from this directory
56$Apache2::Authen::Passphrase::rootdir = "$rootdir/us";
57
58# End the configuration file
59return 1;
This page took 0.011567 seconds and 4 git commands to generate.