]> jfr.im git - irc/SurrealServices/srsv.git/blob - branches/erry-devel/config-example/main.conf
initial commit of erry's Insp work.
[irc/SurrealServices/srsv.git] / branches / erry-devel / config-example / main.conf
1 # This is the servername for services (it shows up in /map and /list).
2 # It MUST contain at least one dot per RFC1459.
3 local = services.example.com
4
5 # This is the name or IP of the IRC-server/Hub that services
6 # will connect to.
7 remote = hub.example.com
8
9 # This is the port to connect to. This port must accept server
10 # connections (cannot be 'clientonly'). Nor can it be an SSL
11 # port. SrSv does not support ziplinks either.
12 port = 6667
13
14 # This is UnrealIRCd's server numeric. You must set this to
15 # a unique value.
16 numeric = 123
17
18 # You can set this to anything you want, it shows up in
19 # /whois and /links
20 info = SurrealServices
21
22 # Server link password. Must match the appropriate link{} block
23 # in the ircd config.
24 pass = mypass
25
26 # Number of worker processes. Note that increasing this above 4
27 # will most likely only slow things down -- see README file.
28 procs = 4
29
30 # Diagnostic channel where you can monitor what services is doing.
31 diag = #Diagnostics
32
33 # List of modules to load. See README.
34 load = core, services
35
36 # The name of your network.
37 # Not really used for anything anymore, we just take 005's NETWORK
38 netname = ExampleNet
39
40 # The email address that services will use for nearexpire,
41 # sendpass, etc.
42 email = Example IRC Services <services@example.com>
43
44 # This is the Reply-To: field. This should be set to an address
45 # of your network staff. Or set it to "noreply" if you hate
46 # your users.
47 replyto = staff@example.com
48
49 # This line will be at the end of each email sent by services.
50 sig = Thank you for chatting with us.
51
52 # If you use NeoStats, set this to the name of your NeoStats
53 # server. Otherwise, leave it commented out.
54 #unsyncserver = neostats.example.com
55
56 # Uncomment this if you don't want any emails to be sent.
57 #nomail = 1
58
59 # This is the address for maillogs.
60 #logmail = staff@example.com
61
62 # This determines whether passwords in services (and possibly some other modules)
63 # are hashed or stored plain-text. hashing passwords mostly makes password-theft
64 # harder, if the database is accessed by someone who should not have it.
65 # default is off, but recommended to be turned on:
66 # a) if your network is under threat of hacking
67 # b) if your network is large
68 # c) to alleviate some fears from users.
69 #
70 # If you set this to 1, and run db-setup, all of the nickreg passes will be
71 # hashed for you. This process is irreversible, short of reverting to
72 # a backup copy of your database. Keeping the backup for any period of time
73 # violates the point of hashing your passwords.
74 hashed-passwords = 0