]> jfr.im git - irc/srvx.git/blame - FAQ
Avoid buffer overflow with 64-bit long.
[irc/srvx.git] / FAQ
CommitLineData
83804a62
MP
1srvx Frequently Asked Questions
2-------------------------------
3
4This FAQ assumes that your services are named NickServ, ChanServ and
5OpServ respectively.
6
7Q1) How do I set up srvx?
d59b54cc
MP
8A1) Read the README and INSTALL files, especially INSTALL. If you are
9upgrading from srvx-1.2, read UPGRADE.
83804a62
MP
10
11Q2) How do I set up my IRC server so srvx talks to it?
12A2) That depends on which IRC server you use. Check its
13documentation. #srvx WILL NOT SUPPORT YOUR IRCD QUESTIONS.
14
15Q3) I get "You must first authenticate with NickServ", help!
16A3) To register an account, /msg NickServ@services.example.com
17register YourName Password. You must be a global IRC operator to
18register the first account; srvx gives the first account "root" level
19(1000) access. To log in afterwards, use the "auth" command instead
20of "register".
21
22Q4) I do not like having to type "/msg NickServ@services.example.com"
23for all of my commands. How can I change that?
24A4) If you want to disable that for the auth command, use "/msg OpServ
25modcmd NickServ.auth flags -qualified". However, that is a BAD idea:
26if you have an auto-perform to log in, and you connect to some other
27IRC network, you will send your password to whoever or whatever is
28named NickServ on that network.
29
30Q5) When I try to register a channel with ChanServ, it tells me I have
31to have "security override" on. Why?
32A5-1) srvx's default configuration is to only allow network staff to
33register channels. For IRC operators and network helpers (users with
34account flag +H), security override can be enabled by sending "/msg
35ChanServ god on". For support helpers (users with account flag +h),
36security override is enabled when the user is in the configured
37support channel.
38A5-2) If you want to allow anyone to register channels, use "/msg
39OpServ modcmd ChanServ.register flags -helping".
40
41Q6) How do I enable HelpServ?
42A6) When you run the "configure" script, you must enable the helpserv
43module; for example, "./configure --enable-modules=helpserv". After
44you compile and start srvx with that option, "/msg OpServ bind OpServ
45helpserv *helpserv.helpserv". After that, you can use "/msg OpServ
46helpserv help" and "/msg OpServ helpserv register"; the "helpserv"
47command acts as a gateway into the HelpServ system.
48
49Q7) How do I enable MemoServ?
50A7) When you run the "configure" script, you must enable the MemoServ
51module; for example, "./configure --enable-modules=memoserv". Then
52see the comment near the start of src/mod-memoserv.c for configuration
53options.
d59b54cc 54
507069a1
MP
55Q8) How do I enable both HelpServ and MemoServ?
56A8) In addition to the post-install configuration steps above, you
57must mention both when you run the configure script. For example, run
58it using "./configure --enable-modules=memoserv,helpserv". (You may
59add the snoop and/or sockcheck modules as well; separate the module
60names with commas.)