Simplify configuration a bit.
[jelmer/ctrlproxy.git] / config.example
1 # Example RC file for ctrlproxy
2 # Read the documentation for more information about specifics
3 # Please adapt to your needs!
4
5 [global]
6 # Replication mechanism to use (some other IRC proxies call this backlog)
7 # Possible values: none, simple, highlight, lastdisconnect
8 # Meanings:
9 #       none: No backlog
10 #       simple: Send backlog since the user last said something
11 #       lastdisconnect: Send backlog since the users' last disconnect
12 #       highlight: Send backlog since last connect, but only lines 
13 #                          containing 'matches' (see below)
14 replication = none
15
16 # Prepend all lines in replication with the time a line was received when replicating
17 report-time = false
18
19 # What words to look for when remembering lines 
20 # (in case "replication = highlight")
21 # Seperate using semicolons
22 # matches=ctrlproxy;foobar
23
24 # Port at which CtrlProxy should listen for new connections
25 # Connections can be plain IRC connections or using the SOCKS protocol.
26 port=6680
27
28 # Password for logging in to ctrlproxy
29 password=
30
31 # Set "bind" to make ctrlproxy only listen on a specific IP address:
32 # Example: bind=192.168.4.3
33
34 # Override motd-file location
35 #motd-file = /tmp/my-motd
36
37 # Save state to configuration file on exit
38 autosave = true
39
40 # Networks to connect to on startup. Seperate by semicolons
41 autoconnect = admin
42 # autoconnect = admin;irc.oftc.net;irc.freenode.net;
43
44 # Support for interfacing to ctrlproxy 
45 # using /MSG ctrlproxy or /CTRLPROXY -->
46 [admin]
47
48 # Irssi-style logging
49 [log-irssi]
50 # logfile = /home/jelmer/tmp/ctrlproxy
51
52 # Work as a socks proxy
53 #[socks]
54 #allow = jelmer:secret, foo:bar
55
56 # Automatically set AWAY after a certain period of time
57 #[auto-away]
58 #message = I'm currently away, sorry!
59 #time = 300 # in seconds