Bump version and update Changes
[app-fonbot-daemon.git] / config.pl
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 # Email
59 # =====
60
61 # Delay emails for up to 5 seconds to allow batching
62 $email_batch_seconds = 5;
63
64 # Send emails from this address
65 $email_from = 'FonBot <fonbot@example.com>';
66
67 # Send emails with this subject
68 $email_subject = 'FonBot message';
69
70 # End the configuration file
71 return 1;
This page took 0.022228 seconds and 4 git commands to generate.