├── .gitattributes ├── .gitignore ├── .gitmodules ├── .mailmap ├── .travis.yml ├── ABOUT-NLS ├── BSDmakefile ├── COPYING ├── GIT-Access ├── INSTALL ├── Makefile ├── NEWS.md ├── README.md ├── VISION.md ├── autoconf ├── config.guess ├── config.rpath ├── config.sub └── install-sh ├── autogen.sh ├── buildsys.mk.in ├── buildsys.module.mk ├── configure ├── configure.ac ├── contrib ├── Atheme.pm ├── Atheme │ ├── ChanServ.pm │ ├── GameServ.pm │ ├── MemoServ.pm │ ├── NickServ.pm │ └── OperServ.pm ├── README ├── anope-1.9.2-convert.php ├── anope_convert.c ├── athemecgi.pl ├── cap_sasl.pl ├── check_collisions.pl ├── convertrservtoatheme │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── dbread.pl ├── hybservtoxtheme.pl ├── ircservtoatheme.php ├── perlxmlrpc.pl ├── pythonxmlrpc.py ├── rubyxmlrpc.rb └── xmlrpc-php │ ├── api.php │ ├── atheme.php │ ├── xmlrpc.inc │ ├── xmlrpc_wrappers.inc │ └── xmlrpcs.inc ├── dist ├── rotatelogs.in ├── xtheme.conf.example ├── xtheme.cron.example └── xtheme.motd.example ├── doc ├── FAQ ├── IRCD ├── JSONRPC ├── LICENSE ├── PCOMMANDS ├── PRIVILEGES ├── SASL ├── SQL ├── TRANSLATION ├── VERSION_LETTERS ├── WINDOWS ├── XMLRPC ├── perl │ ├── Atheme.pod │ └── Atheme │ │ ├── Account.pod │ │ ├── ChanAcs.pod │ │ ├── ChanUser.pod │ │ ├── Channel.pod │ │ ├── ChannelRegistration.pod │ │ ├── Hooks.pod │ │ ├── NickRegistration.pod │ │ ├── Server.pod │ │ ├── Service.pod │ │ ├── Sourceinfo.pod │ │ └── User.pod ├── reference │ └── gtk-doc.make └── technical │ ├── MODES │ └── XMLRPCLIB ├── email └── default │ ├── memo │ ├── register │ ├── sendpass │ ├── setemail │ └── setpass ├── extra.mk.in ├── help ├── default │ ├── alis │ │ └── list │ ├── botserv │ │ ├── act │ │ ├── assign │ │ ├── bot │ │ ├── botlist │ │ ├── info │ │ ├── say │ │ ├── set_fantasy │ │ ├── set_nobot │ │ ├── set_private │ │ ├── set_saycaller │ │ └── unassign │ ├── chanfix │ │ ├── chanfix │ │ ├── info │ │ ├── list │ │ ├── mark │ │ ├── nofix │ │ └── scores │ ├── contrib │ │ ├── access │ │ ├── ajoin │ │ ├── akillchan │ │ ├── as_activate │ │ ├── as_cancel │ │ ├── as_reject │ │ ├── as_request │ │ ├── as_waiting │ │ ├── badwords │ │ ├── cs_fregister │ │ ├── cs_ping │ │ ├── defcon │ │ ├── dnsblexempt │ │ ├── dnsblscan │ │ ├── down │ │ ├── fenforce │ │ ├── forbid │ │ ├── fregister │ │ ├── fsend │ │ ├── generatehash │ │ ├── generatepass │ │ ├── helpme │ │ ├── joinmon │ │ ├── kill │ │ ├── listakillchan │ │ ├── listlogins │ │ ├── listzlinechan │ │ ├── loadchanmodes │ │ ├── logstream │ │ ├── os_modeall │ │ ├── pingspam │ │ ├── procwatch │ │ ├── roulette │ │ ├── savechanmodes │ │ ├── set_blockbadwords │ │ ├── set_blockbadwordsops │ │ ├── set_dnsblaction │ │ ├── trace │ │ ├── up │ │ ├── userinfo │ │ └── zlinechan │ ├── cservice │ │ ├── access_add │ │ ├── access_del │ │ ├── access_info │ │ ├── access_list │ │ ├── access_set │ │ ├── activate │ │ ├── akick │ │ ├── ban │ │ ├── clear_akicks │ │ ├── clear_bans │ │ ├── clear_flags │ │ ├── clear_ops │ │ ├── clear_users │ │ ├── clone │ │ ├── close │ │ ├── count │ │ ├── drop │ │ ├── fdrop │ │ ├── fflags │ │ ├── flags │ │ ├── forcexop │ │ ├── freeze │ │ ├── fsuspend │ │ ├── ftransfer │ │ ├── getkey │ │ ├── halfop │ │ ├── hold │ │ ├── info │ │ ├── invite │ │ ├── kick │ │ ├── kickban │ │ ├── list │ │ ├── mark │ │ ├── mass_dehalfop │ │ ├── mass_deop │ │ ├── mass_deowner │ │ ├── mass_deprotect │ │ ├── mass_devoice │ │ ├── mass_halfop │ │ ├── mass_op │ │ ├── mass_owner │ │ ├── mass_protect │ │ ├── mass_voice │ │ ├── nosupport │ │ ├── op_voice │ │ ├── owner │ │ ├── protect │ │ ├── quiet │ │ ├── recover │ │ ├── register │ │ ├── reject │ │ ├── role_add │ │ ├── role_del │ │ ├── role_list │ │ ├── role_set │ │ ├── set_antiflood │ │ ├── set_email │ │ ├── set_entrymsg │ │ ├── set_fantasy │ │ ├── set_founder │ │ ├── set_gameserv │ │ ├── set_guard │ │ ├── set_keeptopic │ │ ├── set_limitflags │ │ ├── set_mlock │ │ ├── set_noop │ │ ├── set_nosync │ │ ├── set_prefix │ │ ├── set_private │ │ ├── set_property │ │ ├── set_pubacl │ │ ├── set_restricted │ │ ├── set_secure │ │ ├── set_topiclock │ │ ├── set_url │ │ ├── set_verbose │ │ ├── status │ │ ├── support │ │ ├── suspend │ │ ├── sync │ │ ├── taxonomy │ │ ├── template │ │ ├── topic │ │ ├── topicappend │ │ ├── topicprepend │ │ ├── topicswap │ │ ├── unban │ │ ├── unban_self │ │ ├── unquiet │ │ ├── waiting │ │ ├── why │ │ └── xop │ ├── gameserv │ │ ├── calc │ │ ├── eightball │ │ ├── lottery │ │ ├── namegen │ │ ├── roll │ │ └── rps │ ├── groupserv │ │ ├── acsnolimit │ │ ├── drop │ │ ├── fdrop │ │ ├── fflags │ │ ├── flags │ │ ├── info │ │ ├── invite │ │ ├── join │ │ ├── list │ │ ├── listchans │ │ ├── register │ │ ├── regnolimit │ │ ├── set_channel │ │ ├── set_description │ │ ├── set_email │ │ ├── set_groupname │ │ ├── set_joinflags │ │ ├── set_open │ │ ├── set_public │ │ └── set_url │ ├── gservice │ │ └── global │ ├── help │ ├── helpserv │ │ ├── cancel │ │ ├── close │ │ ├── helpme │ │ ├── list │ │ ├── request │ │ └── services │ ├── hostserv │ │ ├── activate │ │ ├── drop │ │ ├── group │ │ ├── listvhost │ │ ├── off │ │ ├── offer │ │ ├── offerlist │ │ ├── on │ │ ├── reject │ │ ├── request │ │ ├── take │ │ ├── unoffer │ │ ├── vhost │ │ ├── vhostnick │ │ └── waiting │ ├── infoserv │ │ ├── del │ │ ├── list │ │ ├── odel │ │ ├── olist │ │ └── post │ ├── memoserv │ │ ├── delete │ │ ├── forward │ │ ├── ignore │ │ ├── list │ │ ├── read │ │ ├── send │ │ ├── sendgroup │ │ └── sendops │ ├── nickserv │ │ ├── acc │ │ ├── access │ │ ├── badmail │ │ ├── cert │ │ ├── drop │ │ ├── fdrop │ │ ├── fdropmail │ │ ├── fgroup │ │ ├── freeze │ │ ├── fungroup │ │ ├── fverify │ │ ├── ghost │ │ ├── group │ │ ├── hold │ │ ├── identify │ │ ├── info │ │ ├── list │ │ ├── listchans │ │ ├── listgroups │ │ ├── listmail │ │ ├── listownmail │ │ ├── listvhost │ │ ├── login │ │ ├── logout │ │ ├── mark │ │ ├── multimark │ │ ├── regain │ │ ├── register │ │ ├── regnolimit │ │ ├── release │ │ ├── resetpass │ │ ├── restrict │ │ ├── return │ │ ├── sendpass │ │ ├── sendpass_user │ │ ├── set_accountname │ │ ├── set_blocksendpass │ │ ├── set_email │ │ ├── set_emailmemos │ │ ├── set_enforce │ │ ├── set_enforcetime │ │ ├── set_hidelastlogin │ │ ├── set_hidemail │ │ ├── set_language │ │ ├── set_nevergroup │ │ ├── set_neverop │ │ ├── set_nogreet │ │ ├── set_nomemo │ │ ├── set_noop │ │ ├── set_nopassword │ │ ├── set_password │ │ ├── set_private │ │ ├── set_privmsg │ │ ├── set_property │ │ ├── set_pubkey │ │ ├── set_quietchg │ │ ├── setpass │ │ ├── status │ │ ├── taxonomy │ │ ├── ungroup │ │ ├── vacation │ │ ├── verify │ │ └── vhost │ ├── oservice │ │ ├── akill │ │ ├── clearchan │ │ ├── clones │ │ ├── compare │ │ ├── greplog │ │ ├── identify │ │ ├── ignore │ │ ├── info │ │ ├── inject │ │ ├── jupe │ │ ├── mode │ │ ├── modinspect │ │ ├── modlist │ │ ├── modload │ │ ├── modreload │ │ ├── modunload │ │ ├── noop │ │ ├── override │ │ ├── perl │ │ ├── rakill │ │ ├── raw │ │ ├── readonly │ │ ├── rehash │ │ ├── restart │ │ ├── rmatch │ │ ├── rnc │ │ ├── rwatch │ │ ├── set_akicktime │ │ ├── set_chanexpire │ │ ├── set_commitinterval │ │ ├── set_enforceprefix │ │ ├── set_klinetime │ │ ├── set_maxchanacs │ │ ├── set_maxchans │ │ ├── set_maxfounders │ │ ├── set_maxlogins │ │ ├── set_maxnicks │ │ ├── set_maxusers │ │ ├── set_mdlimit │ │ ├── set_nickexpire │ │ ├── set_recontime │ │ ├── set_spam │ │ ├── sgline │ │ ├── shutdown │ │ ├── soper │ │ ├── specs │ │ ├── sqline │ │ ├── update │ │ ├── uptime │ │ └── zline │ ├── proxyscan │ │ ├── dnsblexempt │ │ └── dnsblscan │ ├── rpgserv │ │ ├── disable │ │ ├── enable │ │ ├── info │ │ ├── list │ │ ├── search │ │ └── set │ ├── saslserv │ │ └── pkey │ ├── statserv │ │ ├── channel │ │ ├── netsplit │ │ └── server │ └── userserv │ │ ├── cert │ │ ├── drop │ │ ├── freeze │ │ ├── fverify │ │ ├── hold │ │ ├── info │ │ ├── list │ │ ├── listchans │ │ ├── listmail │ │ ├── listvhost │ │ ├── login │ │ ├── logout │ │ ├── mark │ │ ├── register │ │ ├── resetpass │ │ ├── return │ │ ├── sendpass │ │ ├── sendpass_user │ │ ├── set_email │ │ ├── set_emailmemos │ │ ├── set_hidemail │ │ ├── set_neverop │ │ ├── set_noop │ │ ├── set_password │ │ ├── set_private │ │ ├── set_privmsg │ │ ├── set_property │ │ ├── setpass │ │ ├── status │ │ ├── taxonomy │ │ ├── vacation │ │ ├── verify │ │ └── vhost ├── es │ ├── alis │ │ └── list │ ├── botserv │ │ ├── act │ │ ├── assign │ │ ├── bot │ │ ├── botlist │ │ ├── info │ │ ├── say │ │ ├── set_fantasy │ │ ├── set_nobot │ │ ├── set_private │ │ └── unassign │ ├── chanfix │ │ ├── chanfix │ │ ├── info │ │ └── scores │ ├── contrib │ │ ├── access │ │ ├── ajoin │ │ ├── as_activate │ │ ├── as_cancel │ │ ├── as_reject │ │ ├── as_request │ │ ├── as_waiting │ │ ├── badwords │ │ ├── cs_fregister │ │ ├── cs_ping │ │ ├── defcon │ │ ├── down │ │ ├── fenforce │ │ ├── forbid │ │ ├── fregister │ │ ├── generatehash │ │ ├── generatepass │ │ ├── helpme │ │ ├── kill │ │ ├── klinechan │ │ ├── listklinechan │ │ ├── listlogins │ │ ├── loadchanmodes │ │ ├── logstream │ │ ├── pingspam │ │ ├── procwatch │ │ ├── roulette │ │ ├── savechanmodes │ │ ├── set_blockbadwords │ │ ├── trace │ │ ├── up │ │ └── userinfo │ ├── cservice │ │ ├── access_add │ │ ├── access_del │ │ ├── access_info │ │ ├── access_list │ │ ├── akick │ │ ├── ban │ │ ├── clear_bans │ │ ├── clear_flags │ │ ├── clear_users │ │ ├── clone │ │ ├── close │ │ ├── count │ │ ├── drop │ │ ├── fdrop │ │ ├── fflags │ │ ├── flags │ │ ├── forcexop │ │ ├── ftransfer │ │ ├── getkey │ │ ├── halfop │ │ ├── hold │ │ ├── info │ │ ├── invite │ │ ├── kick │ │ ├── kickban │ │ ├── list │ │ ├── mark │ │ ├── op_voice │ │ ├── owner │ │ ├── protect │ │ ├── quiet │ │ ├── recover │ │ ├── register │ │ ├── role_add │ │ ├── role_del │ │ ├── role_list │ │ ├── role_set │ │ ├── set_email │ │ ├── set_entrymsg │ │ ├── set_fantasy │ │ ├── set_founder │ │ ├── set_gameserv │ │ ├── set_guard │ │ ├── set_keeptopic │ │ ├── set_limitflags │ │ ├── set_mlock │ │ ├── set_nosync │ │ ├── set_prefix │ │ ├── set_private │ │ ├── set_property │ │ ├── set_restricted │ │ ├── set_secure │ │ ├── set_topiclock │ │ ├── set_url │ │ ├── set_verbose │ │ ├── status │ │ ├── sync │ │ ├── taxonomy │ │ ├── template │ │ ├── topic │ │ ├── topicappend │ │ ├── topicprepend │ │ ├── unban │ │ ├── unban_self │ │ ├── unquiet │ │ ├── why │ │ └── xop │ ├── gameserv │ │ ├── calc │ │ ├── eightball │ │ ├── lottery │ │ ├── namegen │ │ └── roll │ ├── groupserv │ │ ├── acsnolimit │ │ ├── drop │ │ ├── fdrop │ │ ├── fflags │ │ ├── flags │ │ ├── info │ │ ├── join │ │ ├── list │ │ ├── listchans │ │ ├── register │ │ ├── regnolimit │ │ ├── set_channel │ │ ├── set_description │ │ ├── set_email │ │ ├── set_joinflags │ │ ├── set_open │ │ ├── set_public │ │ └── set_url │ ├── gservice │ │ └── global │ ├── help │ ├── helpserv │ │ ├── cancel │ │ ├── close │ │ ├── helpme │ │ ├── list │ │ ├── request │ │ └── services │ ├── hostserv │ │ ├── activate │ │ ├── group │ │ ├── listvhost │ │ ├── off │ │ ├── offer │ │ ├── offerlist │ │ ├── on │ │ ├── reject │ │ ├── request │ │ ├── take │ │ ├── unoffer │ │ ├── vhost │ │ ├── vhostnick │ │ └── waiting │ ├── infoserv │ │ ├── del │ │ ├── list │ │ ├── odel │ │ ├── olist │ │ └── post │ ├── memoserv │ │ ├── delete │ │ ├── forward │ │ ├── ignore │ │ ├── list │ │ ├── read │ │ ├── send │ │ ├── sendgroup │ │ └── sendops │ ├── nickserv │ │ ├── acc │ │ ├── access │ │ ├── badmail │ │ ├── cert │ │ ├── drop │ │ ├── fdrop │ │ ├── freeze │ │ ├── fungroup │ │ ├── fverify │ │ ├── ghost │ │ ├── group │ │ ├── hold │ │ ├── identify │ │ ├── info │ │ ├── list │ │ ├── listchans │ │ ├── listgroups │ │ ├── listmail │ │ ├── listownmail │ │ ├── listvhost │ │ ├── login │ │ ├── logout │ │ ├── mark │ │ ├── regain │ │ ├── register │ │ ├── regnolimit │ │ ├── release │ │ ├── resetpass │ │ ├── restrict │ │ ├── return │ │ ├── sendpass │ │ ├── sendpass_user │ │ ├── set_accountname │ │ ├── set_email │ │ ├── set_emailmemos │ │ ├── set_enforce │ │ ├── set_enforcetime │ │ ├── set_hidemail │ │ ├── set_language │ │ ├── set_nevergroup │ │ ├── set_neverop │ │ ├── set_nomemo │ │ ├── set_noop │ │ ├── set_password │ │ ├── set_private │ │ ├── set_privmsg │ │ ├── set_property │ │ ├── set_quietchg │ │ ├── setpass │ │ ├── status │ │ ├── taxonomy │ │ ├── ungroup │ │ ├── vacation │ │ ├── verify │ │ └── vhost │ ├── oservice │ │ ├── akill │ │ ├── clearchan │ │ ├── clones │ │ ├── compare │ │ ├── greplog │ │ ├── identify │ │ ├── ignore │ │ ├── info │ │ ├── inject │ │ ├── jupe │ │ ├── mode │ │ ├── modinspect │ │ ├── modlist │ │ ├── modload │ │ ├── modreload │ │ ├── modunload │ │ ├── noop │ │ ├── override │ │ ├── rakill │ │ ├── raw │ │ ├── readonly │ │ ├── rehash │ │ ├── restart │ │ ├── rmatch │ │ ├── rnc │ │ ├── rwatch │ │ ├── script │ │ ├── sgline │ │ ├── shutdown │ │ ├── soper │ │ ├── specs │ │ ├── sqline │ │ ├── update │ │ └── uptime │ ├── saslserv │ │ └── pkey │ └── userserv │ │ ├── cert │ │ ├── drop │ │ ├── freeze │ │ ├── fverify │ │ ├── hold │ │ ├── info │ │ ├── list │ │ ├── listchans │ │ ├── listmail │ │ ├── listvhost │ │ ├── login │ │ ├── logout │ │ ├── mark │ │ ├── register │ │ ├── resetpass │ │ ├── return │ │ ├── sendpass │ │ ├── sendpass_user │ │ ├── set_email │ │ ├── set_emailmemos │ │ ├── set_hidemail │ │ ├── set_neverop │ │ ├── set_noop │ │ ├── set_password │ │ ├── set_private │ │ ├── set_privmsg │ │ ├── set_property │ │ ├── setpass │ │ ├── status │ │ ├── taxonomy │ │ ├── vacation │ │ ├── verify │ │ └── vhost ├── fr │ ├── alis │ │ └── list │ ├── botserv │ │ ├── act │ │ ├── assign │ │ ├── bot │ │ ├── botlist │ │ ├── info │ │ ├── say │ │ ├── set_fantasy │ │ ├── set_nobot │ │ ├── set_private │ │ └── unassign │ ├── chanfix │ │ ├── chanfix │ │ ├── info │ │ └── scores │ ├── contrib │ │ ├── access │ │ ├── ajoin │ │ ├── as_activate │ │ ├── as_cancel │ │ ├── as_reject │ │ ├── as_request │ │ ├── as_waiting │ │ ├── badwords │ │ ├── cs_fregister │ │ ├── cs_ping │ │ ├── defcon │ │ ├── dnsblexempt │ │ ├── dnsblscan │ │ ├── down │ │ ├── fenforce │ │ ├── forbid │ │ ├── fregister │ │ ├── fsend │ │ ├── generatehash │ │ ├── generatepass │ │ ├── helpme │ │ ├── joinmon │ │ ├── kill │ │ ├── klinechan │ │ ├── listklinechan │ │ ├── listlogins │ │ ├── loadchanmodes │ │ ├── logstream │ │ ├── os_modeall │ │ ├── pingspam │ │ ├── procwatch │ │ ├── roulette │ │ ├── savechanmodes │ │ ├── set_blockbadwords │ │ ├── set_dnsblaction │ │ ├── trace │ │ ├── up │ │ └── userinfo │ ├── cservice │ │ ├── access_add │ │ ├── access_del │ │ ├── access_info │ │ ├── access_list │ │ ├── access_set │ │ ├── akick │ │ ├── ban │ │ ├── clear_bans │ │ ├── clear_flags │ │ ├── clear_users │ │ ├── clone │ │ ├── close │ │ ├── count │ │ ├── drop │ │ ├── fdrop │ │ ├── fflags │ │ ├── flags │ │ ├── forcexop │ │ ├── ftransfer │ │ ├── getkey │ │ ├── halfop │ │ ├── hold │ │ ├── info │ │ ├── invite │ │ ├── kick │ │ ├── kickban │ │ ├── list │ │ ├── mark │ │ ├── op_voice │ │ ├── owner │ │ ├── protect │ │ ├── quiet │ │ ├── recover │ │ ├── register │ │ ├── role_add │ │ ├── role_del │ │ ├── role_list │ │ ├── role_set │ │ ├── set_email │ │ ├── set_entrymsg │ │ ├── set_fantasy │ │ ├── set_founder │ │ ├── set_gameserv │ │ ├── set_guard │ │ ├── set_keeptopic │ │ ├── set_limitflags │ │ ├── set_mlock │ │ ├── set_nosync │ │ ├── set_prefix │ │ ├── set_private │ │ ├── set_property │ │ ├── set_restricted │ │ ├── set_secure │ │ ├── set_topiclock │ │ ├── set_url │ │ ├── set_verbose │ │ ├── status │ │ ├── sync │ │ ├── taxonomy │ │ ├── template │ │ ├── topic │ │ ├── topicappend │ │ ├── topicprepend │ │ ├── unban │ │ ├── unban_self │ │ ├── unquiet │ │ ├── why │ │ └── xop │ ├── gameserv │ │ ├── calc │ │ ├── eightball │ │ ├── lottery │ │ ├── namegen │ │ ├── roll │ │ └── rps │ ├── groupserv │ │ ├── acsnolimit │ │ ├── drop │ │ ├── fdrop │ │ ├── fflags │ │ ├── flags │ │ ├── info │ │ ├── invite │ │ ├── join │ │ ├── list │ │ ├── listchans │ │ ├── register │ │ ├── regnolimit │ │ ├── set_channel │ │ ├── set_description │ │ ├── set_email │ │ ├── set_joinflags │ │ ├── set_open │ │ ├── set_public │ │ └── set_url │ ├── gservice │ │ └── global │ ├── help │ ├── helpserv │ │ ├── cancel │ │ ├── close │ │ ├── helpme │ │ ├── list │ │ ├── request │ │ └── services │ ├── hostserv │ │ ├── activate │ │ ├── group │ │ ├── listvhost │ │ ├── off │ │ ├── offer │ │ ├── offerlist │ │ ├── on │ │ ├── reject │ │ ├── request │ │ ├── take │ │ ├── unoffer │ │ ├── vhost │ │ ├── vhostnick │ │ └── waiting │ ├── infoserv │ │ ├── del │ │ ├── list │ │ ├── odel │ │ ├── olist │ │ └── post │ ├── memoserv │ │ ├── delete │ │ ├── forward │ │ ├── ignore │ │ ├── list │ │ ├── read │ │ ├── send │ │ ├── sendgroup │ │ └── sendops │ ├── nickserv │ │ ├── acc │ │ ├── access │ │ ├── badmail │ │ ├── cert │ │ ├── drop │ │ ├── fdrop │ │ ├── freeze │ │ ├── fungroup │ │ ├── fverify │ │ ├── ghost │ │ ├── group │ │ ├── hold │ │ ├── identify │ │ ├── info │ │ ├── list │ │ ├── listchans │ │ ├── listgroups │ │ ├── listmail │ │ ├── listownmail │ │ ├── listvhost │ │ ├── login │ │ ├── logout │ │ ├── mark │ │ ├── regain │ │ ├── register │ │ ├── regnolimit │ │ ├── release │ │ ├── resetpass │ │ ├── restrict │ │ ├── return │ │ ├── sendpass │ │ ├── sendpass_user │ │ ├── set_accountname │ │ ├── set_email │ │ ├── set_emailmemos │ │ ├── set_enforce │ │ ├── set_enforcetime │ │ ├── set_hidemail │ │ ├── set_language │ │ ├── set_nevergroup │ │ ├── set_neverop │ │ ├── set_nogreet │ │ ├── set_nomemo │ │ ├── set_noop │ │ ├── set_password │ │ ├── set_private │ │ ├── set_privmsg │ │ ├── set_property │ │ ├── set_quietchg │ │ ├── setpass │ │ ├── status │ │ ├── taxonomy │ │ ├── ungroup │ │ ├── vacation │ │ ├── verify │ │ └── vhost │ ├── oservice │ │ ├── akill │ │ ├── clearchan │ │ ├── clones │ │ ├── compare │ │ ├── greplog │ │ ├── identify │ │ ├── ignore │ │ ├── info │ │ ├── inject │ │ ├── jupe │ │ ├── mode │ │ ├── modinspect │ │ ├── modlist │ │ ├── modload │ │ ├── modreload │ │ ├── modunload │ │ ├── noop │ │ ├── override │ │ ├── rakill │ │ ├── raw │ │ ├── readonly │ │ ├── rehash │ │ ├── restart │ │ ├── rmatch │ │ ├── rnc │ │ ├── rwatch │ │ ├── script │ │ ├── set_akicktime │ │ ├── set_chanexpire │ │ ├── set_commitinterval │ │ ├── set_enforceprefix │ │ ├── set_klinetime │ │ ├── set_maxchanacs │ │ ├── set_maxchans │ │ ├── set_maxfounders │ │ ├── set_maxlogins │ │ ├── set_maxnicks │ │ ├── set_maxusers │ │ ├── set_mdlimit │ │ ├── set_nickexpire │ │ ├── set_recontime │ │ ├── set_spam │ │ ├── sgline │ │ ├── shutdown │ │ ├── soper │ │ ├── specs │ │ ├── sqline │ │ ├── update │ │ └── uptime │ ├── rpgserv │ │ ├── disable │ │ ├── enable │ │ ├── info │ │ ├── list │ │ ├── search │ │ └── set │ ├── saslserv │ │ └── pkey │ ├── statserv │ │ ├── channel │ │ ├── netsplit │ │ └── server │ └── userserv │ │ ├── cert │ │ ├── drop │ │ ├── freeze │ │ ├── fverify │ │ ├── hold │ │ ├── info │ │ ├── list │ │ ├── listchans │ │ ├── listmail │ │ ├── listvhost │ │ ├── login │ │ ├── logout │ │ ├── mark │ │ ├── register │ │ ├── resetpass │ │ ├── return │ │ ├── sendpass │ │ ├── sendpass_user │ │ ├── set_email │ │ ├── set_emailmemos │ │ ├── set_hidemail │ │ ├── set_neverop │ │ ├── set_noop │ │ ├── set_password │ │ ├── set_private │ │ ├── set_privmsg │ │ ├── set_property │ │ ├── setpass │ │ ├── status │ │ ├── taxonomy │ │ ├── vacation │ │ ├── verify │ │ └── vhost └── ru │ ├── charset │ ├── cservice │ ├── akick │ ├── ban │ ├── clear_bans │ ├── clear_users │ ├── close │ ├── count │ ├── drop │ ├── fflags │ ├── flags │ ├── forcexop │ ├── ftransfer │ ├── getkey │ ├── halfop │ ├── hold │ ├── info │ ├── invite │ ├── kick │ ├── kickban │ ├── list │ ├── mark │ ├── op_voice │ ├── quiet │ ├── recover │ ├── register │ ├── set_email │ ├── set_entrymsg │ ├── set_fantasy │ ├── set_founder │ ├── set_guard │ ├── set_keeptopic │ ├── set_mlock │ ├── set_private │ ├── set_property │ ├── set_restricted │ ├── set_secure │ ├── set_topiclock │ ├── set_url │ ├── set_verbose │ ├── status │ ├── taxonomy │ ├── template │ ├── topic │ ├── topicappend │ ├── topicprepend │ ├── unban │ ├── unban_self │ ├── unquiet │ ├── userinfo │ ├── why │ └── xop │ ├── gameserv │ ├── eightball │ ├── namegen │ └── roll │ ├── gservice │ └── global │ ├── help │ ├── memoserv │ ├── delete │ ├── forward │ ├── ignore │ ├── list │ ├── read │ ├── send │ └── sendops │ ├── nickserv │ ├── acc │ ├── access │ ├── drop │ ├── freeze │ ├── fungroup │ ├── fverify │ ├── ghost │ ├── group │ ├── hold │ ├── identify │ ├── info │ ├── list │ ├── listchans │ ├── listmail │ ├── listvhost │ ├── login │ ├── logout │ ├── mark │ ├── register │ ├── release │ ├── resetpass │ ├── return │ ├── sendpass │ ├── set_accountname │ ├── set_email │ ├── set_emailmemos │ ├── set_enforce │ ├── set_hidemail │ ├── set_neverop │ ├── set_nomemo │ ├── set_noop │ ├── set_password │ ├── set_private │ ├── set_privmsg │ ├── set_property │ ├── setpass │ ├── status │ ├── taxonomy │ ├── ungroup │ ├── vacation │ ├── verify │ └── vhost │ ├── oservice │ ├── akill │ ├── clearchan │ ├── clones │ ├── compare │ ├── identify │ ├── ignore │ ├── inject │ ├── jupe │ ├── mode │ ├── modinspect │ ├── modlist │ ├── modload │ ├── modrestart │ ├── modunload │ ├── noop │ ├── rakill │ ├── raw │ ├── rehash │ ├── restart │ ├── rmatch │ ├── rnc │ ├── rwatch │ ├── sgline │ ├── shutdown │ ├── soper │ ├── specs │ ├── update │ └── uptime │ ├── saslserv │ └── pkey │ └── userserv │ ├── drop │ ├── freeze │ ├── fverify │ ├── hold │ ├── info │ ├── list │ ├── listchans │ ├── listmail │ ├── listvhost │ ├── login │ ├── logout │ ├── mark │ ├── register │ ├── resetpass │ ├── return │ ├── sendpass │ ├── set_email │ ├── set_emailmemos │ ├── set_hidemail │ ├── set_neverop │ ├── set_noop │ ├── set_password │ ├── set_private │ ├── set_privmsg │ ├── set_property │ ├── setpass │ ├── status │ ├── taxonomy │ ├── vacation │ ├── verify │ └── vhost ├── include ├── .indent.pro ├── Makefile ├── abirev.h ├── account.h ├── atheme.h ├── atheme_memory.h ├── atheme_string.h ├── auth.h ├── authcookie.h ├── base64.h ├── channels.h ├── commandtree.h ├── common.h ├── conf.h ├── confprocess.h ├── connection.h ├── crypto.h ├── culture.h ├── database_backend.h ├── datastream.h ├── entity-validation.h ├── entity.h ├── flags.h ├── global.h ├── hook.h ├── hooktypes.in ├── httpd.h ├── i18n.h ├── inline │ ├── Makefile │ ├── account.h │ ├── channels.h │ └── connection.h ├── libathemecore.h ├── linker.h ├── match.h ├── md5.h ├── mkhooktypes.sh ├── module.h ├── object.h ├── pbkdf2v2.h ├── phandler.h ├── pmodule.h ├── privs.h ├── protocol │ ├── Makefile │ ├── asuka.h │ ├── bahamut.h │ ├── charybdis.h │ ├── chatircd.h │ ├── hybrid.h │ ├── inspircd.h │ ├── ircd-seven.h │ ├── ircnet.h │ ├── nefarious.h │ ├── ngircd.h │ ├── ratbox.h │ ├── shadowircd.h │ ├── undernet.h │ └── unreal.h ├── res.h ├── reslib.h ├── sasl.h ├── servers.h ├── services.h ├── servtree.h ├── sourceinfo.h ├── stdinc.h ├── sysconf.h.in ├── table.h ├── taint.h ├── template.h ├── tools.h ├── uid.h ├── uplink.h └── users.h ├── libathemecore ├── .indent.pro ├── Makefile ├── account.c ├── arc4random.c ├── atheme.c ├── auth.c ├── authcookie.c ├── base64.c ├── chacha_private.h ├── channels.c ├── cidr.c ├── cmode.c ├── commandtree.c ├── conf.c ├── confprocess.c ├── connection.c ├── crypto.c ├── ctcp-common.c ├── culture.c ├── database_backend.c ├── datastream.c ├── entity.c ├── explicit_bzero.c ├── flags.c ├── function.c ├── help.c ├── hook.c ├── internal.h ├── linker.c ├── logger.c ├── match.c ├── md5.c ├── memory.c ├── module.c ├── node.c ├── object.c ├── packet.c ├── phandler.c ├── pmodule.c ├── privs.c ├── ptasks.c ├── qrcode.c ├── res.c ├── reslib.c ├── send.c ├── servers.c ├── services.c ├── servtree.c ├── sharedheap.c ├── signal.c ├── snprintf.c ├── string.c ├── strshare.c ├── svsignore.c ├── table.c ├── template.c ├── tokenize.c ├── ubase64.c ├── uid.c ├── uplink.c ├── users.c └── version.c ├── m4 ├── atheme-c.m4 ├── buildsys.m4 ├── codeset.m4 ├── gettext.m4 ├── glibc21.m4 ├── gtk-doc.m4 ├── iconv.m4 ├── inttypes-pri.m4 ├── inttypes.m4 ├── inttypes_h.m4 ├── lcmessage.m4 ├── lib-ld.m4 ├── lib-link.m4 ├── lib-prefix.m4 ├── nls.m4 ├── pkg.m4 ├── po.m4 ├── progtest.m4 ├── snprintf.m4 ├── stdint_h.m4 ├── uintmax_t.m4 └── ulonglong.m4 ├── mingw-build.sh ├── modules ├── Makefile ├── alis │ ├── Makefile │ └── main.c ├── auth │ ├── Makefile │ ├── dummy.c │ └── ldap.c ├── backend │ ├── Makefile │ ├── corestorage.c │ ├── flatfile.c │ └── opensex.c ├── botserv │ ├── Makefile │ ├── botserv.h │ ├── bottalk.c │ ├── help.c │ ├── info.c │ ├── main.c │ ├── set.c │ ├── set_core.c │ ├── set_fantasy.c │ ├── set_nobot.c │ ├── set_private.c │ └── set_saycaller.c ├── chanfix │ ├── Makefile │ ├── chanfix.h │ ├── fix.c │ ├── gather.c │ └── main.c ├── chanserv │ ├── Makefile │ ├── access.c │ ├── akick.c │ ├── antiflood.c │ ├── ban.c │ ├── chanserv.h │ ├── clear.c │ ├── clear_akicks.c │ ├── clear_bans.c │ ├── clear_flags.c │ ├── clear_ops.c │ ├── clear_users.c │ ├── clone.c │ ├── close.c │ ├── count.c │ ├── drop.c │ ├── fflags.c │ ├── flags.c │ ├── freeze.c │ ├── fsuspend.c │ ├── ftransfer.c │ ├── getkey.c │ ├── halfop.c │ ├── help.c │ ├── hold.c │ ├── info.c │ ├── invite.c │ ├── kick.c │ ├── list.c │ ├── main.c │ ├── mark.c │ ├── mass.c │ ├── mass_halfop.c │ ├── mass_op.c │ ├── mass_owner.c │ ├── mass_protect.c │ ├── mass_voice.c │ ├── moderate.c │ ├── op.c │ ├── owner.c │ ├── protect.c │ ├── quiet.c │ ├── recover.c │ ├── register.c │ ├── set.c │ ├── set_core.c │ ├── set_email.c │ ├── set_entrymsg.c │ ├── set_fantasy.c │ ├── set_founder.c │ ├── set_gameserv.c │ ├── set_guard.c │ ├── set_keeptopic.c │ ├── set_limitflags.c │ ├── set_mlock.c │ ├── set_noop.c │ ├── set_prefix.c │ ├── set_private.c │ ├── set_property.c │ ├── set_pubacl.c │ ├── set_restricted.c │ ├── set_secure.c │ ├── set_topiclock.c │ ├── set_url.c │ ├── set_verbose.c │ ├── status.c │ ├── successor_acl.c │ ├── suspend.c │ ├── sync.c │ ├── taxonomy.c │ ├── template.c │ ├── topic.c │ ├── unban_self.c │ ├── version.c │ ├── voice.c │ ├── why.c │ └── xop.c ├── crypto │ ├── Makefile │ ├── argon2d.c │ ├── ircservices.c │ ├── pbkdf2.c │ ├── pbkdf2v2.c │ ├── posix.c │ ├── rawmd5.c │ └── rawsha1.c ├── exttarget │ ├── Makefile │ ├── chanacs.c │ ├── channel.c │ ├── exttarget.h │ ├── main.c │ ├── oper.c │ ├── registered.c │ └── server.c ├── gameserv │ ├── Makefile │ ├── dice.c │ ├── eightball.c │ ├── gamecalc.c │ ├── gameserv_common.h │ ├── gen_namegen_tab.pl │ ├── happyfarm.c │ ├── help.c │ ├── lottery.c │ ├── main.c │ ├── namegen.c │ ├── namegen_tab.h │ ├── names │ │ └── default │ └── rps.c ├── global │ ├── Makefile │ └── main.c ├── groupserv │ ├── Makefile │ ├── acsnolimit.c │ ├── drop.c │ ├── fdrop.c │ ├── fflags.c │ ├── flags.c │ ├── groupserv.h │ ├── help.c │ ├── info.c │ ├── invite.c │ ├── join.c │ ├── list.c │ ├── listchans.c │ ├── main │ │ ├── Makefile │ │ ├── database.c │ │ ├── groupserv.c │ │ ├── groupserv_common.h │ │ ├── groupserv_main.h │ │ ├── hooks.c │ │ ├── main.c │ │ └── validation.c │ ├── register.c │ ├── regnolimit.c │ ├── set.c │ ├── set_channel.c │ ├── set_description.c │ ├── set_email.c │ ├── set_groupname.c │ ├── set_joinflags.c │ ├── set_open.c │ ├── set_public.c │ └── set_url.c ├── helpserv │ ├── Makefile │ ├── helpme.c │ ├── main.c │ ├── services.c │ └── ticket.c ├── hostserv │ ├── Makefile │ ├── drop.c │ ├── group.c │ ├── help.c │ ├── hostserv.h │ ├── main.c │ ├── offer.c │ ├── onoff.c │ ├── request.c │ ├── vhost.c │ └── vhostnick.c ├── infoserv │ ├── Makefile │ └── main.c ├── memoserv │ ├── Makefile │ ├── delete.c │ ├── forward.c │ ├── help.c │ ├── ignore.c │ ├── list.c │ ├── main.c │ ├── read.c │ ├── send.c │ ├── sendall.c │ ├── sendgroup.c │ └── sendops.c ├── misc │ ├── Makefile │ ├── canon_gmail.c │ └── httpd.c ├── nickserv │ ├── Makefile │ ├── access.c │ ├── badmail.c │ ├── cert.c │ ├── cracklib.c │ ├── drop.c │ ├── enforce.c │ ├── fdropmail.c │ ├── freeze.c │ ├── ghost.c │ ├── group.c │ ├── help.c │ ├── hold.c │ ├── identify.c │ ├── info.c │ ├── info_lastquit.c │ ├── list.c │ ├── list.h │ ├── list_common.h │ ├── listchans.c │ ├── listgroups.c │ ├── listmail.c │ ├── listownmail.c │ ├── login.c │ ├── logout.c │ ├── main.c │ ├── mark.c │ ├── multimark.c │ ├── register.c │ ├── regnolimit.c │ ├── resetpass.c │ ├── restrict.c │ ├── return.c │ ├── sendpass.c │ ├── sendpass_user.c │ ├── set.c │ ├── set_accountname.c │ ├── set_blocksendpass.c │ ├── set_core.c │ ├── set_email.c │ ├── set_emailmemos.c │ ├── set_enforcetime.c │ ├── set_hidelastlogin.c │ ├── set_hidemail.c │ ├── set_language.c │ ├── set_nevergroup.c │ ├── set_neverop.c │ ├── set_nogreet.c │ ├── set_nomemo.c │ ├── set_noop.c │ ├── set_nopassword.c │ ├── set_password.c │ ├── set_private.c │ ├── set_privmsg.c │ ├── set_property.c │ ├── set_pubkey.c │ ├── set_quietchg.c │ ├── setpass.c │ ├── status.c │ ├── taxonomy.c │ ├── vacation.c │ ├── verify.c │ └── vhost.c ├── operserv │ ├── Makefile │ ├── akill.c │ ├── clearchan.c │ ├── clones.c │ ├── compare.c │ ├── greplog.c │ ├── help.c │ ├── identify.c │ ├── ignore.c │ ├── info.c │ ├── inject.c │ ├── jupe.c │ ├── main.c │ ├── mode.c │ ├── modinspect.c │ ├── modlist.c │ ├── modload.c │ ├── modreload.c │ ├── modunload.c │ ├── netlog.c │ ├── noop.c │ ├── override.c │ ├── rakill.c │ ├── raw.c │ ├── readonly.c │ ├── rehash.c │ ├── restart.c │ ├── rmatch.c │ ├── rnc.c │ ├── rwatch.c │ ├── set.c │ ├── sgline.c │ ├── shutdown.c │ ├── soper.c │ ├── specs.c │ ├── sqline.c │ ├── update.c │ ├── uptime.c │ └── zline.c ├── protocol │ ├── .indent.pro │ ├── Makefile │ ├── _indent.pro │ ├── asuka.c │ ├── bahamut.c │ ├── base36uid.c │ ├── charybdis.c │ ├── chatircd.c │ ├── elemental-ircd.c │ ├── hybrid.c │ ├── inspircd.c │ ├── ircd-seven.c │ ├── ircnet.c │ ├── mixin_nohalfops.c │ ├── mixin_noholdnick.c │ ├── mixin_noowner.c │ ├── mixin_noprotect.c │ ├── nefarious.c │ ├── ngircd.c │ ├── p10-generic.c │ ├── ratbox.c │ ├── shadowircd.c │ ├── ts6-generic.c │ ├── undernet.c │ ├── unreal.c │ └── unreal4.c ├── proxyscan │ ├── Makefile │ ├── dnsbl.c │ ├── help.c │ └── main.c ├── rpgserv │ ├── Makefile │ ├── enable.c │ ├── help.c │ ├── info.c │ ├── list.c │ ├── main.c │ ├── prettyprint.h │ ├── search.c │ └── set.c ├── saslserv │ ├── Makefile │ ├── authcookie.c │ ├── ecdsa-nist256p-challenge.c │ ├── external.c │ ├── main.c │ └── plain.c ├── scripting │ ├── Makefile │ └── perl │ │ ├── Makefile │ │ ├── api │ │ ├── Atheme.xs │ │ ├── Makefile │ │ ├── account.xs │ │ ├── atheme_perl.h │ │ ├── channel.xs │ │ ├── channelregistration.xs │ │ ├── commands.xs │ │ ├── config.xs │ │ ├── hooks.xs │ │ ├── internal_list.xs │ │ ├── log.xs │ │ ├── make_perl_hooks.pl │ │ ├── metadata.xs │ │ ├── nickregistration.xs │ │ ├── object.xs │ │ ├── perl_command.c │ │ ├── perl_hooks.h │ │ ├── perl_hooks_extra.h │ │ ├── perl_utilities.c │ │ ├── server.xs │ │ ├── services.xs │ │ ├── sourceinfo.xs │ │ ├── typemap │ │ └── user.xs │ │ ├── examples │ │ └── catserv.pl │ │ ├── lib │ │ ├── Atheme.pm │ │ ├── Atheme │ │ │ ├── Account.pm │ │ │ ├── ChanAcs.pm │ │ │ ├── ChanMode.pm │ │ │ ├── ChannelRegistration.pm │ │ │ ├── Command.pm │ │ │ ├── Entity.pm │ │ │ ├── Fault.pm │ │ │ ├── Hooks.pm │ │ │ ├── Internal.pm │ │ │ ├── Internal │ │ │ │ ├── HookHash.pm │ │ │ │ ├── Hooklist.pm │ │ │ │ └── ServiceHash.pm │ │ │ ├── Log.pm │ │ │ ├── NickRegistration.pm │ │ │ ├── Object.pm │ │ │ ├── ReadOnlyHashWrapper.pm │ │ │ └── Service.pm │ │ └── init.pl │ │ ├── perl_module.c │ │ └── perl_object_list.c ├── security │ ├── Makefile │ └── cmdperm.c ├── statserv │ ├── Makefile │ ├── channel.c │ ├── main.c │ ├── netsplit.c │ └── server.c └── transport │ ├── Makefile │ ├── jsonrpc │ ├── Makefile │ ├── jsonrpclib.c │ ├── jsonrpclib.h │ └── main.c │ ├── p10.c │ ├── rfc1459 │ ├── Makefile │ ├── main.c │ ├── parse.c │ └── rfc1459.h │ └── xmlrpc │ ├── Makefile │ ├── main.c │ ├── xmlrpclib.c │ └── xmlrpclib.h ├── po ├── ChangeLog ├── LINGUAS ├── Makefile ├── POTFILES.in ├── atheme.pot ├── boldquot.sed ├── cy.po ├── da.po ├── de.po ├── en@boldquot.header ├── en@quot.header ├── es.po ├── fr.po ├── insert-header.sin ├── quot.sed ├── remove-potcdate.sin ├── ru.po └── update-potfiles.sh ├── scripts ├── application.sh └── makerelease.sh ├── src ├── Makefile ├── base64 │ ├── Makefile │ └── main.c ├── dbverify │ ├── Makefile │ └── main.c ├── dragon │ ├── Makefile │ ├── dragon.conf │ └── main.c ├── ecdsadecode │ ├── Makefile │ └── main.c ├── ecdsakeygen │ ├── Makefile │ └── main.c ├── ecdsasign │ ├── Makefile │ └── main.c ├── footprint │ ├── Makefile │ └── main.c └── services │ ├── Makefile │ └── main.c ├── tools ├── Makefile ├── createburst │ ├── Makefile │ └── createburst.c ├── createtestdb │ ├── Makefile │ └── createtestdb.c └── html_helpfiles.sh └── xtheme-services.pc.in /.gitattributes: -------------------------------------------------------------------------------- 1 | *.c linguist-language=C 2 | *.h linguist-language=C 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "libmowgli-2"] 2 | path = libmowgli-2 3 | url = git://github.com/atheme/libmowgli-2.git 4 | [submodule "libunwind"] 5 | path = libunwind 6 | url = git://git.savannah.gnu.org/libunwind.git 7 | [submodule "modules/contrib"] 8 | path = modules/contrib 9 | url = git://github.com/XthemeOrg/xtheme-contrib-modules.git -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- 1 | Austin Ellis siniStar 2 | -------------------------------------------------------------------------------- /BSDmakefile: -------------------------------------------------------------------------------- 1 | # This BSDmakefile redirects to GNU make. 2 | 3 | all: .DEFAULT 4 | .DEFAULT: 5 | @case ${MAKE} in \ 6 | gmake|*/gmake) \ 7 | echo "BSDmakefile run using gmake??"; \ 8 | exit 1;; \ 9 | esac 10 | gmake ${.MAKEFLAGS} ${.TARGETS} 11 | -------------------------------------------------------------------------------- /contrib/convertrservtoatheme/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | **/*.rs.bk 3 | -------------------------------------------------------------------------------- /contrib/convertrservtoatheme/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "convertrservtoatheme" 3 | version = "0.1.0" 4 | authors = ["Jilles Tjoelker "] 5 | 6 | [dependencies] 7 | rusqlite = "0.12.0" 8 | -------------------------------------------------------------------------------- /contrib/pythonxmlrpc.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # Simple example of using Atheme's XMLRPC server with python 3 | 4 | import xmlrpclib 5 | 6 | atheme = xmlrpclib.ServerProxy('http://127.0.0.1:8080/xmlrpc') 7 | 8 | print atheme.atheme.command('*', '*', '::1', 'ALIS', 'LIST', '*') 9 | -------------------------------------------------------------------------------- /help/default/botserv/act: -------------------------------------------------------------------------------- 1 | Help for ACT: 2 | 3 | Makes the bot do the equivalent of a "/me" command 4 | on the given channel using the given text. 5 | 6 | Syntax: ACT 7 | 8 | Examples: 9 | /msg &nick& ACT #help yawns! 10 | -------------------------------------------------------------------------------- /help/default/botserv/assign: -------------------------------------------------------------------------------- 1 | Help for ASSIGN: 2 | 3 | Assigns a bot pointed out by nick to the channel chan. You 4 | can then configure the bot for the channel so it fits 5 | your needs. 6 | 7 | Syntax: ASSIGN 8 | 9 | Examples: 10 | /msg &nick& ASSIGN #help Security 11 | -------------------------------------------------------------------------------- /help/default/botserv/botlist: -------------------------------------------------------------------------------- 1 | Help for BOTLIST: 2 | 3 | Lists all available bots on this network. 4 | 5 | Syntax: BOTLIST 6 | 7 | Examples: 8 | /msg &nick& BOTLIST 9 | -------------------------------------------------------------------------------- /help/default/botserv/info: -------------------------------------------------------------------------------- 1 | Help for INFO: 2 | 3 | INFO allows you to see &nick& information about a channel or a bot. 4 | 5 | Syntax: INFO <#channel|botnick> 6 | -------------------------------------------------------------------------------- /help/default/botserv/say: -------------------------------------------------------------------------------- 1 | Help for SAY: 2 | 3 | Makes the bot say the given text on the given channel. 4 | 5 | Syntax: SAY 6 | 7 | Examples: 8 | /msg &nick& SAY #help Welcome to #help! 9 | -------------------------------------------------------------------------------- /help/default/botserv/set_nobot: -------------------------------------------------------------------------------- 1 | Help for SET NOBOT: 2 | 3 | This option marks a channel as unassignable. If a bot 4 | is already assigned to the channel, it is unassigned 5 | automatically when you enable the option. 6 | 7 | Syntax: SET <#channel> NOBOT {ON|OFF} 8 | 9 | Examples: 10 | /msg &nick& SET #help NOBOT ON 11 | -------------------------------------------------------------------------------- /help/default/botserv/set_private: -------------------------------------------------------------------------------- 1 | Help for SET PRIVATE: 2 | 3 | This option prevents a bot from being assigned to a 4 | channel by users that do not have chan:admin privilege. 5 | 6 | Syntax: SET PRIVATE {ON|OFF} 7 | 8 | Examples: 9 | /msg &nick& SET Security PRIVATE ON 10 | -------------------------------------------------------------------------------- /help/default/chanfix/chanfix: -------------------------------------------------------------------------------- 1 | Help for CHANFIX: 2 | 3 | CHANFIX allows you to manually "fix" a 4 | unregistered channel by fixing certain 5 | modes and giving ops to the user(s) with 6 | the highest scores. 7 | 8 | Syntax: CHANFIX <#channel> 9 | 10 | Example: 11 | /msg &nick& CHANFIX #foo 12 | -------------------------------------------------------------------------------- /help/default/chanfix/info: -------------------------------------------------------------------------------- 1 | Help for INFO: 2 | 3 | INFO displays chanfix information such as 4 | the highest score, usercount, score stepping 5 | and the fix status of the channel. 6 | 7 | Syntax: INFO <#channel> 8 | 9 | Examples: 10 | /msg &nick& INFO #foo 11 | -------------------------------------------------------------------------------- /help/default/chanfix/list: -------------------------------------------------------------------------------- 1 | Help for LIST: 2 | 3 | LIST displays a list of matching &nick& 4 | channels (or all channels if no criteria 5 | is given) 6 | 7 | Syntax: INFO [*] 8 | 9 | Examples: 10 | /msg &nick& LIST 11 | /msg &nick& LIST #Chat* 12 | -------------------------------------------------------------------------------- /help/default/chanfix/scores: -------------------------------------------------------------------------------- 1 | Help for SCORES: 2 | 3 | SCORES lists all users' chanfix scores 4 | for the specified channel. 5 | 6 | Syntax: SCORES <#channel> 7 | 8 | Examples: 9 | /msg &nick& SCORES #foo 10 | -------------------------------------------------------------------------------- /help/default/contrib/ajoin: -------------------------------------------------------------------------------- 1 | Help for AJOIN: 2 | 3 | AJOIN allows you to manage an automatic-join on identify channel list. 4 | 5 | Syntax: AJOIN ADD|DEL|LIST|CLEAR [#channel] 6 | 7 | Examples: 8 | /msg &nick& AJOIN LIST 9 | /msg &nick& AJOIN ADD #foo 10 | /msg &nick& AJOIN DEL #foo 11 | /msg &nick& AJOIN CLEAR 12 | -------------------------------------------------------------------------------- /help/default/contrib/akillchan: -------------------------------------------------------------------------------- 1 | Help for AKILLCHAN: 2 | 3 | AKILLCHAN G:lines all users joining a channel. Useful for unwanted 4 | channels and the like. 5 | 6 | Syntax: AKILLCHAN <#channel> [reason] 7 | 8 | Examples: 9 | /msg &nick& AKILLCHAN #lamers ON Channel of Lamers. 10 | -------------------------------------------------------------------------------- /help/default/contrib/as_activate: -------------------------------------------------------------------------------- 1 | Help for ACTIVATE: 2 | 3 | Send the requested announcement for the given nick. 4 | A memo informing the user will also be sent. 5 | 6 | Syntax: ACTIVATE 7 | 8 | Examples: 9 | /msg &nick& ACTIVATE nenolod 10 | -------------------------------------------------------------------------------- /help/default/contrib/as_cancel: -------------------------------------------------------------------------------- 1 | Help for CANCEL: 2 | 3 | CANCEL a pending announcement. 4 | 5 | Syntax: CANCEL 6 | 7 | Examples: 8 | /msg &nick& CANCEL 9 | -------------------------------------------------------------------------------- /help/default/contrib/as_reject: -------------------------------------------------------------------------------- 1 | Help for REJECT: 2 | 3 | Reject the requested announcement for the given nick. 4 | A memo informing the user will also be sent. 5 | 6 | Syntax: REJECT 7 | 8 | Examples: 9 | /msg &nick& REJECT nenolod 10 | -------------------------------------------------------------------------------- /help/default/contrib/as_waiting: -------------------------------------------------------------------------------- 1 | Help for WAITING: 2 | 3 | WAITING lists all announcements currently waiting for activation. 4 | 5 | Syntax: WAITING 6 | 7 | Examples: 8 | /msg &nick& WAITING 9 | -------------------------------------------------------------------------------- /help/default/contrib/cs_ping: -------------------------------------------------------------------------------- 1 | Help for PING: 2 | 3 | PING allows a user to verify their network connectivity by "pinging" &nick& and 4 | having it reply with "Pong!". 5 | 6 | Syntax: PING 7 | 8 | Examples: 9 | /msg &nick& PING 10 | -------------------------------------------------------------------------------- /help/default/contrib/down: -------------------------------------------------------------------------------- 1 | Help for DOWN: 2 | 3 | DOWN removes all current access you have on a given channel. 4 | It does not remove the flags or xOP that you have, just the modes. 5 | 6 | Syntax: DOWN <#channel> 7 | 8 | Examples: 9 | /msg &nick& DOWN #foo 10 | -------------------------------------------------------------------------------- /help/default/contrib/fenforce: -------------------------------------------------------------------------------- 1 | Help for FENFORCE: 2 | 3 | FENFORCE allows operators to enable or disable 4 | nickname enforcement for any account. 5 | 6 | Syntax: FENFORCE ON|OFF 7 | -------------------------------------------------------------------------------- /help/default/contrib/forbid: -------------------------------------------------------------------------------- 1 | Help for FORBID: 2 | 3 | FORBID disallows the use of a specified nickname, similar to 4 | RESV or QLINE in your IRCd. 5 | 6 | Syntax: FORBID ON|OFF [reason] 7 | 8 | Examples: 9 | /msg &nick& FORBID spb ON No reason. 10 | /msg &nick& FORBID spb OFF 11 | -------------------------------------------------------------------------------- /help/default/contrib/generatehash: -------------------------------------------------------------------------------- 1 | Help for GENERATEHASH: 2 | 3 | GENERATEHASH generates a Xtheme password hash. Useful 4 | to easily create a password for a services oper password. 5 | 6 | Syntax: GENERATEHASH 7 | 8 | Examples: 9 | /msg &nick& GENERATEHASH ThIsPassw0rd 10 | -------------------------------------------------------------------------------- /help/default/contrib/generatepass: -------------------------------------------------------------------------------- 1 | Help for GENERATEPASS: 2 | 3 | GENERATEPASS generates a random password. It does not automatically 4 | insert it into any fields. 5 | 6 | Syntax: GENERATEPASS [length] 7 | 8 | Examples: 9 | /msg &nick& GENERATEPASS 10 | /msg &nick& GENERATEPASS 12 11 | -------------------------------------------------------------------------------- /help/default/contrib/listakillchan: -------------------------------------------------------------------------------- 1 | Help for LISTAKILLCHAN 2 | 3 | LISTAKILLCHAN lists all (or a pattern of) channels with an active AKILLCHAN on them. 4 | 5 | Syntax: LISTAKILLCHAN [pattern] 6 | 7 | Examples: 8 | /msg &nick& LISTAKILLCHAN 9 | /msg &nick& LISTAKILLCHAN #lame* 10 | -------------------------------------------------------------------------------- /help/default/contrib/listlogins: -------------------------------------------------------------------------------- 1 | Help for LISTLOGINS: 2 | 3 | LISTLOGINS lists details of all clients currently authenticated as you including 4 | their nick!user@host mask and their real host. 5 | 6 | Syntax: LISTLOGINS 7 | 8 | Examples: 9 | /msg &nick& LISTLOGINS 10 | -------------------------------------------------------------------------------- /help/default/contrib/listzlinechan: -------------------------------------------------------------------------------- 1 | Help for LISTZLINECHAN 2 | 3 | LISTZLINECHAN lists all (or a pattern of) channels with an active ZLINECHAN on them. 4 | 5 | Syntax: LISTZLINECHAN [pattern] 6 | 7 | Examples: 8 | /msg &nick& LISTZLINECHAN 9 | /msg &nick& LISTZLINECHAN #bot* 10 | -------------------------------------------------------------------------------- /help/default/contrib/logstream: -------------------------------------------------------------------------------- 1 | Help for LOGSTREAM: 2 | 3 | LOGSTREAM allows you to "stream" Xtheme's logfiles into a channel, similar to 4 | the snoop channel. 5 | 6 | Syntax: LOGSTREAM <#channel> 7 | 8 | Examples: 9 | /msg &nick& LOGSTREAM #services 10 | -------------------------------------------------------------------------------- /help/default/contrib/os_modeall: -------------------------------------------------------------------------------- 1 | Help for MODEALL: 2 | 3 | Syntax: MODEALL [parameters] 4 | 5 | MODEALL sets modes on all channels. This may be useful in 6 | the event of a bot flood, to set all channels +R. 7 | 8 | Examples: 9 | /msg &nick& MODEALL +R 10 | /msg &nick& MODEALL +M 11 | -------------------------------------------------------------------------------- /help/default/contrib/pingspam: -------------------------------------------------------------------------------- 1 | Help for PINGSPAM: 2 | 3 | PINGSPAM spams a user with pings from every service, plus some bonus notices. 4 | 5 | Syntax: PINGSPAM 6 | 7 | Examples: 8 | /msg &nick& PINGSPAM foo-person 9 | -------------------------------------------------------------------------------- /help/default/contrib/procwatch: -------------------------------------------------------------------------------- 1 | Help for PROCWATCH: 2 | 3 | PROCWATCH notifies the snoop channel on exit of a process. This module 4 | only compiles and works under FreeBSD 4.1 and later FreeBSD versions. 5 | 6 | Syntax: PROCWATCH 7 | 8 | Examples: 9 | /msg &nick& PROCWATCH 1234 10 | -------------------------------------------------------------------------------- /help/default/contrib/roulette: -------------------------------------------------------------------------------- 1 | Help for ROULETTE: 2 | 3 | ROULETTE provides you with a nice game of 4 | Russian Roulette. 5 | 6 | Syntax: ROULETTE 7 | 8 | Example: 9 | /msg &nick& ROULETTE 10 | -------------------------------------------------------------------------------- /help/default/contrib/savechanmodes: -------------------------------------------------------------------------------- 1 | Help for SAVECHANMODES: 2 | 3 | SAVECHANMODES saves all channel modes, channel topics and channel bans for 4 | every channel on the network to a file to be restored later with LOADCHANMODES. 5 | 6 | Syntax: SAVECHANMODES 7 | 8 | Examples: 9 | /msg &nick& SAVECHANMODES 10 | -------------------------------------------------------------------------------- /help/default/contrib/up: -------------------------------------------------------------------------------- 1 | Help for UP: 2 | 3 | UP grants you all access modes you have permission to have on a given channel. 4 | 5 | Syntax: UP <#channel> 6 | 7 | Examples: 8 | /msg &nick& UP #foo 9 | -------------------------------------------------------------------------------- /help/default/contrib/zlinechan: -------------------------------------------------------------------------------- 1 | Help for ZLINECHAN: 2 | 3 | ZLINECHAN z:lines all users joining a channel. Useful for unwanted Botnet 4 | channels and the like. 5 | 6 | Syntax: ZLINECHAN <#channel> [reason] 7 | 8 | Examples: 9 | /msg &nick& ZLINECHAN #botnet ON Channel of Drones/Botnet. 10 | -------------------------------------------------------------------------------- /help/default/cservice/access_add: -------------------------------------------------------------------------------- 1 | Help for ACCESS ADD: 2 | 3 | ACCESS ADD will assign the given user to the given 4 | channel role. 5 | 6 | Syntax: ACCESS <#channel> ADD 7 | 8 | Examples: 9 | /msg &nick& ACCESS #xtheme ADD stitch helpers 10 | -------------------------------------------------------------------------------- /help/default/cservice/access_del: -------------------------------------------------------------------------------- 1 | Help for ACCESS DEL: 2 | 3 | ACCESS DEL will remove all channel access from a given user. 4 | 5 | Syntax: ACCESS <#channel> DEL 6 | 7 | Examples: 8 | /msg &nick& ACCESS #xtheme DEL stitch 9 | -------------------------------------------------------------------------------- /help/default/cservice/access_set: -------------------------------------------------------------------------------- 1 | Help for ACCESS SET: 2 | 3 | ACCESS SET will change the given user's role to the given 4 | channel role. 5 | 6 | Syntax: ACCESS <#channel> SET 7 | 8 | Examples: 9 | /msg &nick& ACCESS #xtheme SET stitch lowlevel-staff 10 | -------------------------------------------------------------------------------- /help/default/cservice/ban: -------------------------------------------------------------------------------- 1 | Help for BAN: 2 | 3 | The BAN command allows you to ban a user or hostmask from 4 | a channel. 5 | 6 | Syntax: BAN <#channel> 7 | 8 | Examples: 9 | /msg &nick& BAN #chat carnell 10 | /msg &nick& BAN #chat *!*@*.ipt.aol.com 11 | -------------------------------------------------------------------------------- /help/default/cservice/clear_ops: -------------------------------------------------------------------------------- 1 | Help for CLEAR OPS: 2 | 3 | Clear ops will deop all channel operators on the channel, 4 | except you. 5 | 6 | Use of this command requires the +R flag channel flag. 7 | 8 | Syntax: CLEAR <#channel> OPS 9 | 10 | Examples: 11 | /msg &nick& CLEAR #ChatZone OPS 12 | -------------------------------------------------------------------------------- /help/default/cservice/ftransfer: -------------------------------------------------------------------------------- 1 | Help for FTRANSFER: 2 | 3 | FTRANSFER forcefully transfers foundership 4 | of a channel. 5 | 6 | Syntax: FTRANSFER <#channel> 7 | 8 | Example: 9 | /msg &nick& FTRANSFER #casual vodkaswirl 10 | -------------------------------------------------------------------------------- /help/default/cservice/getkey: -------------------------------------------------------------------------------- 1 | Help for GETKEY: 2 | 3 | GETKEY returns the key (+k, password to be allowed in) 4 | of the specified channel: /join #channel key 5 | 6 | Syntax: GETKEY <#channel> 7 | 8 | Examples: 9 | /msg &nick& GETKEY #foo 10 | -------------------------------------------------------------------------------- /help/default/cservice/hold: -------------------------------------------------------------------------------- 1 | Help for HOLD: 2 | 3 | HOLD prevents a channel from expiring for inactivity. 4 | Held channels will still expire when there are no 5 | eligible successors. 6 | 7 | Syntax: HOLD <#channel> ON|OFF 8 | 9 | Examples: 10 | /msg &nick& HOLD #xtheme ON 11 | -------------------------------------------------------------------------------- /help/default/cservice/info: -------------------------------------------------------------------------------- 1 | Help for INFO: 2 | 3 | INFO displays channel information such as 4 | registration time, flags, and other details. 5 | 6 | Syntax: INFO <#channel> 7 | 8 | Examples: 9 | /msg &nick& INFO #foo 10 | -------------------------------------------------------------------------------- /help/default/cservice/invite: -------------------------------------------------------------------------------- 1 | Help for INVITE: 2 | 3 | INVITE requests services to invite you to the 4 | specified channel. This is useful if you use 5 | the +i channel mode. 6 | 7 | Syntax: INVITE <#channel> 8 | 9 | Examples: 10 | /msg &nick& INVITE #foo 11 | -------------------------------------------------------------------------------- /help/default/cservice/role_del: -------------------------------------------------------------------------------- 1 | Help for ROLE DEL: 2 | 3 | ROLE DEL will delete a channel-specific role. 4 | 5 | Syntax: ROLE <#channel> DEL 6 | 7 | Examples: 8 | /msg &nick& ROLE #xtheme DEL helpers 9 | -------------------------------------------------------------------------------- /help/default/cservice/role_list: -------------------------------------------------------------------------------- 1 | Help for ROLE LIST: 2 | 3 | ROLE LIST lists all channel-specific and network-wide roles 4 | and the flags that each role has. 5 | 6 | Syntax: ROLE <#channel> LIST 7 | 8 | Examples: 9 | /msg &nick& ROLE #baz LIST 10 | -------------------------------------------------------------------------------- /help/default/cservice/set_guard: -------------------------------------------------------------------------------- 1 | Help for SET GUARD: 2 | 3 | SET GUARD allows you to have &nick& join your channel. 4 | 5 | Syntax: SET <#channel> GUARD ON|OFF 6 | 7 | Example: 8 | /msg &nick& SET #Xtheme GUARD ON 9 | -------------------------------------------------------------------------------- /help/default/cservice/set_noop: -------------------------------------------------------------------------------- 1 | Help for SET NOOP: 2 | 3 | SET NOOP ON designates that there should be no operators 4 | on the channel besides Services, and all Operator 5 | commands should be run through &nick& 6 | 7 | Syntax: SET <#channel> NOOP ON|OFF 8 | 9 | Example: 10 | /msg &nick& SET #snoop NOOP ON 11 | -------------------------------------------------------------------------------- /help/default/cservice/set_nosync: -------------------------------------------------------------------------------- 1 | Help for SET NOSYNC: 2 | 3 | SET NOSYNC allows channel staff to disable 4 | automatic syncing of channel status when it 5 | is changed. 6 | 7 | Syntax: SET <#channel> NOSYNC ON|OFF 8 | 9 | Example: 10 | /msg &nick& SET #xtheme NOSYNC ON 11 | -------------------------------------------------------------------------------- /help/default/cservice/set_private: -------------------------------------------------------------------------------- 1 | Help for SET PRIVATE: 2 | 3 | SET PRIVATE hides various information about 4 | the channel from other users. 5 | 6 | Syntax: SET <#channel> PRIVATE ON|OFF 7 | 8 | Example: 9 | /msg &nick& SET #foo PRIVATE ON 10 | -------------------------------------------------------------------------------- /help/default/cservice/set_pubacl: -------------------------------------------------------------------------------- 1 | Help for SET PUBACL: 2 | 3 | SET PUBACL allows the channel access list to be publicly visible. 4 | 5 | Syntax: SET <#channel> PUBACL ON|OFF 6 | 7 | Example: 8 | /msg &nick& SET #Chat PUBACL ON 9 | -------------------------------------------------------------------------------- /help/default/cservice/set_url: -------------------------------------------------------------------------------- 1 | Help for SET URL: 2 | 3 | SET URL allows you to change or set the URL 4 | associated with a channel. This is shown 5 | to all users joining the channel. 6 | 7 | Syntax: SET <#channel> URL [url] 8 | 9 | Example: 10 | /msg &nick& SET #chat URL http://slashdot.org 11 | -------------------------------------------------------------------------------- /help/default/cservice/sync: -------------------------------------------------------------------------------- 1 | Help for SYNC: 2 | 3 | The SYNC command will force all channel statuses to flags, giving and taking 4 | away ops, voice and so on where necessary. You must have the channel flag +R to 5 | run this command. 6 | 7 | Syntax: SYNC <#channel> 8 | 9 | Examples: 10 | /msg &nick& SYNC #bar 11 | -------------------------------------------------------------------------------- /help/default/cservice/taxonomy: -------------------------------------------------------------------------------- 1 | Help for TAXONOMY: 2 | 3 | The taxonomy command lists metadata information associated 4 | with registered channels. 5 | 6 | Examples: 7 | /msg &nick& TAXONOMY #xtheme 8 | -------------------------------------------------------------------------------- /help/default/cservice/topic: -------------------------------------------------------------------------------- 1 | Help for TOPIC: 2 | 3 | The TOPIC command allows for the changing of a topic on a channel. 4 | 5 | Syntax: TOPIC <#channel> 6 | 7 | Examples: 8 | /msg &nick& TOPIC #foo bar 9 | -------------------------------------------------------------------------------- /help/default/cservice/topicappend: -------------------------------------------------------------------------------- 1 | Help for TOPICAPPEND: 2 | 3 | The TOPICAPPEND command allows for the addition to a topic on a channel. 4 | 5 | Syntax: TOPICAPPEND <#channel> 6 | 7 | Examples: 8 | /msg &nick& TOPICAPPEND #foo bar 9 | -------------------------------------------------------------------------------- /help/default/cservice/topicprepend: -------------------------------------------------------------------------------- 1 | Help for TOPICPREPEND: 2 | 3 | The TOPICPREPEND command allows for the addition to a topic on a channel. 4 | 5 | Syntax: TOPICPREPEND <#channel> 6 | 7 | Examples: 8 | /msg &nick& TOPICPREPEND #foo bar 9 | -------------------------------------------------------------------------------- /help/default/cservice/topicswap: -------------------------------------------------------------------------------- 1 | Help for TOPICSWAP: 2 | 3 | Allows easily swapping out parts of a topic on a channel. 4 | 5 | Syntax: TOPICSWAP <#channel> :[] 6 | 7 | Examples: 8 | /msg &nick& TOPICSWAP #foo orange:apple 9 | -------------------------------------------------------------------------------- /help/default/cservice/unban_self: -------------------------------------------------------------------------------- 1 | Help for UNBAN: 2 | 3 | The UNBAN command allows you to remove all bans matching 4 | you from a channel. 5 | 6 | Syntax: UNBAN <#channel> 7 | 8 | Examples: 9 | /msg &nick& UNBAN #chat 10 | -------------------------------------------------------------------------------- /help/default/cservice/why: -------------------------------------------------------------------------------- 1 | Help for WHY: 2 | 3 | The WHY command shows the access entries an online 4 | user matches. 5 | 6 | Syntax: WHY <#channel> [nickname] 7 | 8 | Examples: 9 | /msg &nick& WHY #Xtheme Tiddles 10 | -------------------------------------------------------------------------------- /help/default/gameserv/calc: -------------------------------------------------------------------------------- 1 | Help for CALC: 2 | 3 | CALC lets you do some simple mathematics with 4 | services. You can also specify a number of 5 | calculations that can be done at once. 6 | 7 | Syntax: CALC [times] 8 | 9 | Example: 10 | /msg &nick& CALC 6*8 11 | /msg &nick& CALC 5 1+2 12 | -------------------------------------------------------------------------------- /help/default/gameserv/eightball: -------------------------------------------------------------------------------- 1 | Help for EIGHTBALL: 2 | 3 | Asks the magic 8-ball a question. 4 | 5 | Syntax: EIGHTBALL 6 | 7 | Example: 8 | /msg &nick& EIGHTBALL 9 | -------------------------------------------------------------------------------- /help/default/gameserv/lottery: -------------------------------------------------------------------------------- 1 | Help for LOTTERY: 2 | 3 | LOTTERY randomly chooses a user on 4 | the channel where it is run. 5 | 6 | Syntax: LOTTERY 7 | 8 | Example: 9 | /msg &nick& LOTTERY 10 | -------------------------------------------------------------------------------- /help/default/gameserv/namegen: -------------------------------------------------------------------------------- 1 | Help for NAMEGEN: 2 | 3 | NAMEGEN provides you with a list of possible 4 | names you could use. 5 | 6 | It can display the result to either yourself or 7 | a channel. 8 | 9 | Syntax: NAMEGEN [number of names] 10 | 11 | Example: 12 | /msg &nick& NAMEGEN 5 13 | -------------------------------------------------------------------------------- /help/default/gameserv/rps: -------------------------------------------------------------------------------- 1 | Help for RPS: 2 | 3 | RPS will randomly reply "Rock", "Paper", or "Scissors". 4 | 5 | Syntax: RPS 6 | 7 | Examples: 8 | /msg &nick& RPS 9 | -------------------------------------------------------------------------------- /help/default/groupserv/acsnolimit: -------------------------------------------------------------------------------- 1 | Help for ACSNOLIMIT: 2 | 3 | ACSNOLIMIT allows a group to have a unlimited number of 4 | group access list entries. 5 | 6 | Syntax: ACSNOLIMIT ON|OFF 7 | 8 | Examples: 9 | /msg &nick& ACSNOLIMIT !awesome-people ON 10 | -------------------------------------------------------------------------------- /help/default/groupserv/info: -------------------------------------------------------------------------------- 1 | Help for INFO: 2 | 3 | INFO displays group information such as 4 | registration time, group URL, email address 5 | and founder. 6 | 7 | Syntax: INFO 8 | 9 | Examples: 10 | /msg &nick& INFO !baz 11 | -------------------------------------------------------------------------------- /help/default/groupserv/invite: -------------------------------------------------------------------------------- 1 | Help for INVITE: 2 | 3 | INVITE allows you to invite a user to join a 4 | "private"/non-open group or a group that is 5 | currently full. 6 | 7 | Syntax: INVITE 8 | 9 | Examples: 10 | /msg &nick& INVITE !foo jdhore 11 | -------------------------------------------------------------------------------- /help/default/groupserv/join: -------------------------------------------------------------------------------- 1 | Help for JOIN: 2 | 3 | JOIN allows you to join a group set as open for anyone to 4 | join. No privileges will be set on you when you join a group 5 | this way, you will only be listed as a group member. 6 | 7 | Syntax: JOIN 8 | 9 | Examples: 10 | /msg &nick& JOIN !baz 11 | -------------------------------------------------------------------------------- /help/default/groupserv/list: -------------------------------------------------------------------------------- 1 | Help for LIST: 2 | 3 | LIST shows all groups matching a specified pattern. 4 | 5 | Syntax: LIST 6 | 7 | Examples: 8 | /msg &nick& LIST * 9 | /msg &nick& LIST !pants* 10 | -------------------------------------------------------------------------------- /help/default/groupserv/listchans: -------------------------------------------------------------------------------- 1 | Help for LISTCHANS: 2 | 3 | LISTCHANS shows the channels that a group has 4 | access to. 5 | 6 | AKICKs are not shown. 7 | 8 | Syntax: LISTCHANS 9 | 10 | Example: 11 | /msg &nick& LISTCHANS !foo 12 | -------------------------------------------------------------------------------- /help/default/groupserv/register: -------------------------------------------------------------------------------- 1 | Help for REGISTER: 2 | 3 | REGISTER allows you to register a group so that you can easily 4 | manage a number of users and channels. 5 | 6 | Syntax: REGISTER 7 | 8 | Examples: 9 | /msg &nick& REGISTER !developers 10 | -------------------------------------------------------------------------------- /help/default/groupserv/regnolimit: -------------------------------------------------------------------------------- 1 | Help for REGNOLIMIT: 2 | 3 | REGNOLIMIT allows a group to collectively maintain an 4 | unlimited amount of channel registrations. 5 | 6 | Syntax: REGNOLIMIT ON|OFF 7 | 8 | Examples: 9 | /msg &nick& REGNOLIMIT !awesome-people ON 10 | -------------------------------------------------------------------------------- /help/default/groupserv/set_channel: -------------------------------------------------------------------------------- 1 | Help for SET CHANNEL: 2 | 3 | SET CHANNEL allows you to change or set the official IRC channel 4 | of a group. This is shown when a user requests info about the group. 5 | 6 | Syntax: SET CHANNEL [#channel] 7 | 8 | Example: 9 | /msg &nick& SET !xtheme CHANNEL #Xtheme 10 | -------------------------------------------------------------------------------- /help/default/groupserv/set_groupname: -------------------------------------------------------------------------------- 1 | Help for SET GROUPNAME: 2 | 3 | SET GROUPNAME allows you to change or set the name of your group. 4 | This is shown when a user requests info about the group. 5 | 6 | Syntax: SET GROUPNAME 7 | 8 | Example: 9 | /msg &nick& SET !atheme GROUPNAME !Xtheme 10 | -------------------------------------------------------------------------------- /help/default/groupserv/set_open: -------------------------------------------------------------------------------- 1 | Help for SET OPEN: 2 | 3 | SET OPEN allows a group to be open to any user joining 4 | whenever they like. Users that JOIN the group will have 5 | no privileges by default. 6 | 7 | Syntax: SET OPEN 8 | 9 | Examples: 10 | /msg &nick& SET !awesome-people OPEN ON 11 | -------------------------------------------------------------------------------- /help/default/groupserv/set_public: -------------------------------------------------------------------------------- 1 | Help for SET PUBLIC: 2 | 3 | SET PUBLIC shows group membership when users request NickServ 4 | INFO of members of the group. 5 | 6 | Syntax: SET PUBLIC 7 | 8 | Examples: 9 | /msg &nick& SET !awesome-people PUBLIC ON 10 | -------------------------------------------------------------------------------- /help/default/groupserv/set_url: -------------------------------------------------------------------------------- 1 | Help for SET URL: 2 | 3 | SET URL allows you to change or set the URL 4 | associated with a group. This is shown 5 | to all users in INFO. 6 | 7 | Syntax: SET URL [url] 8 | 9 | Example: 10 | /msg &nick& SET !slashdot URL http://slashdot.org 11 | -------------------------------------------------------------------------------- /help/default/help: -------------------------------------------------------------------------------- 1 | Help for HELP: 2 | 3 | HELP displays help information on all 4 | commands in services. 5 | 6 | Syntax: HELP [parameters] 7 | -------------------------------------------------------------------------------- /help/default/helpserv/cancel: -------------------------------------------------------------------------------- 1 | Help for CANCEL: 2 | 3 | CANCEL allows you to cancel a currently pending request for help. 4 | 5 | Syntax: CANCEL 6 | 7 | Examples: 8 | /msg &nick& CANCEL 9 | -------------------------------------------------------------------------------- /help/default/helpserv/close: -------------------------------------------------------------------------------- 1 | Help for CLOSE: 2 | 3 | Close the help request from the given nick. 4 | The user will be notified that their request was closed. 5 | 6 | Syntax: CLOSE [reason] 7 | 8 | Examples: 9 | /msg &nick& CLOSE Grue It is now no longer pitch dark. 10 | -------------------------------------------------------------------------------- /help/default/helpserv/helpme: -------------------------------------------------------------------------------- 1 | Help for HELPME: 2 | 3 | HELPME allows you to easily request help from the network staff. 4 | This works more like an alert than a ticketing system. 5 | 6 | Syntax: HELPME [topic] 7 | 8 | Examples: 9 | /msg &nick& HELPME 10 | /msg &nick& HELPME I need help with registering a channel. 11 | -------------------------------------------------------------------------------- /help/default/helpserv/list: -------------------------------------------------------------------------------- 1 | Help for LIST: 2 | 3 | LIST lists all currently open help requests. 4 | 5 | Syntax: LIST 6 | 7 | Examples: 8 | /msg &nick& LIST 9 | -------------------------------------------------------------------------------- /help/default/helpserv/services: -------------------------------------------------------------------------------- 1 | Help for SERVICES: 2 | 3 | SERVICES allows you to view a list of all services running on the network 4 | so you can choose one to message and get more help. 5 | 6 | Syntax: SERVICES 7 | 8 | Examples: 9 | /msg &nick& SERVICES 10 | -------------------------------------------------------------------------------- /help/default/hostserv/group: -------------------------------------------------------------------------------- 1 | Help for GROUP: 2 | 3 | This command will set the current nick's vHost as the 4 | vHost for all the nicks in the group, including nicks 5 | that will be added in the future. 6 | 7 | Syntax: GROUP 8 | 9 | Examples: 10 | /msg &nick& GROUP 11 | -------------------------------------------------------------------------------- /help/default/hostserv/offerlist: -------------------------------------------------------------------------------- 1 | Help for OFFERLIST: 2 | 3 | OFFERLIST lists all vHosts currently available from 4 | the network staff. 5 | 6 | Syntax: OFFERLIST 7 | 8 | Examples: 9 | /msg &nick& OFFERLIST 10 | -------------------------------------------------------------------------------- /help/default/hostserv/on: -------------------------------------------------------------------------------- 1 | Help for ON: 2 | 3 | Activates the vHost currently assigned to the nick in use. 4 | When you use this command any user who performs a /whois 5 | on you will see the vHost instead of your real IP address. 6 | 7 | Syntax: ON 8 | 9 | Examples: 10 | /msg &nick& ON 11 | -------------------------------------------------------------------------------- /help/default/hostserv/unoffer: -------------------------------------------------------------------------------- 1 | Help for UNOFFER: 2 | 3 | Remove a offered vHost from the OFFER list. 4 | 5 | Syntax: UNOFFER 6 | 7 | Examples: 8 | /msg &nick& UNOFFER users.example.net 9 | -------------------------------------------------------------------------------- /help/default/hostserv/waiting: -------------------------------------------------------------------------------- 1 | Help for WAITING: 2 | 3 | WAITING lists all vHosts currently waiting for activation. 4 | 5 | Syntax: WAITING 6 | 7 | Examples: 8 | /msg &nick& WAITING 9 | -------------------------------------------------------------------------------- /help/default/infoserv/del: -------------------------------------------------------------------------------- 1 | Help for DEL: 2 | 3 | DEL is used to delete informational messages that you no longer 4 | want users to see on connect. This will not allow you to delete 5 | oper &nick& messages. 6 | 7 | Syntax: DEL 8 | 9 | Example: 10 | /msg &nick& DEL 1 11 | -------------------------------------------------------------------------------- /help/default/infoserv/list: -------------------------------------------------------------------------------- 1 | Help for LIST: 2 | 3 | LIST allows you to view all informational messages in the database. 4 | These messages will also be sent to all users on connect. 5 | 6 | Syntax: LIST 7 | 8 | Example: 9 | /msg &nick& LIST 10 | -------------------------------------------------------------------------------- /help/default/infoserv/odel: -------------------------------------------------------------------------------- 1 | Help for ODEL: 2 | 3 | ODEL is used to delete informational messages that you no longer 4 | want opers to see upon oper-up. This will not allow you to delete 5 | user &nick& messages. 6 | 7 | Syntax: ODEL 8 | 9 | Example: 10 | /msg &nick& ODEL 1 11 | -------------------------------------------------------------------------------- /help/default/memoserv/forward: -------------------------------------------------------------------------------- 1 | Help for FORWARD: 2 | 3 | FORWARD allows you to forward a memo to another 4 | account. Useful for a variety of reasons. 5 | 6 | You can also SEND, DELETE, LIST or READ memos. 7 | 8 | Syntax: FORWARD 9 | 10 | Examples: 11 | /msg &nick& FORWARD kog 1 12 | -------------------------------------------------------------------------------- /help/default/memoserv/list: -------------------------------------------------------------------------------- 1 | Help for LIST: 2 | 3 | LIST shows you your memos in your inbox, 4 | including who sent them and when. To read a 5 | memo, use the READ command. You can also 6 | DELETE or FORWARD a memo. 7 | 8 | Syntax: LIST 9 | 10 | Examples: 11 | /msg &nick& LIST 12 | -------------------------------------------------------------------------------- /help/default/memoserv/read: -------------------------------------------------------------------------------- 1 | Help for READ: 2 | 3 | READ allows you to read a memo that another 4 | user has sent you. You can either read a memo 5 | by number or read your new memos. 6 | 7 | Syntax: READ 8 | Syntax: READ NEW 9 | 10 | Examples: 11 | /msg &nick& READ 1 12 | -------------------------------------------------------------------------------- /help/default/memoserv/sendgroup: -------------------------------------------------------------------------------- 1 | Help for SENDGROUP: 2 | 3 | SENDGROUP allows you to send a memo to all members 4 | of a group who have the +m flag. 5 | 6 | Syntax: SENDGROUP 7 | 8 | Examples: 9 | /msg &nick& SENDGROUP !opers beware of badguy 10 | -------------------------------------------------------------------------------- /help/default/memoserv/sendops: -------------------------------------------------------------------------------- 1 | Help for SENDOPS: 2 | 3 | SENDOPS allows you to send a memo to all ops 4 | on a channel. Only users allowed to view the 5 | access list can do this. 6 | 7 | Syntax: SENDOPS <#channel> 8 | 9 | Examples: 10 | /msg &nick& SENDOPS #chat beware of badguy 11 | -------------------------------------------------------------------------------- /help/default/nickserv/hold: -------------------------------------------------------------------------------- 1 | Help for HOLD: 2 | 3 | HOLD prevents an account and all nicknames registered 4 | to it from expiring. 5 | 6 | Syntax: HOLD ON|OFF 7 | 8 | Examples: 9 | /msg &nick& HOLD jilles ON 10 | -------------------------------------------------------------------------------- /help/default/nickserv/listmail: -------------------------------------------------------------------------------- 1 | Help for LISTMAIL: 2 | 3 | LISTMAIL shows accounts registered to a 4 | given e-mail address. Wildcards are allowed. 5 | 6 | Syntax: LISTMAIL 7 | 8 | Examples: 9 | /msg &nick& LISTMAIL patrick@example.com 10 | /msg &nick& LISTMAIL *@cam.ac.uk 11 | -------------------------------------------------------------------------------- /help/default/nickserv/listownmail: -------------------------------------------------------------------------------- 1 | Help for LISTOWNMAIL: 2 | 3 | LISTOWNMAIL shows accounts registered to 4 | your account's e-mail address. 5 | 6 | Syntax: LISTOWNMAIL 7 | 8 | Examples: 9 | /msg &nick& LISTOWNMAIL 10 | -------------------------------------------------------------------------------- /help/default/nickserv/login: -------------------------------------------------------------------------------- 1 | Help for LOGIN: 2 | 3 | LOGIN identifies you with services so that you 4 | can perform general maintenance and commands that 5 | require you to be logged in. 6 | 7 | Syntax: LOGIN 8 | 9 | Example: 10 | /msg &nick& LOGIN smith sesame 11 | -------------------------------------------------------------------------------- /help/default/nickserv/logout: -------------------------------------------------------------------------------- 1 | Help for LOGOUT: 2 | 3 | LOGOUT logs you out of the account 4 | that you are currently logged into. 5 | 6 | Syntax: LOGOUT 7 | 8 | Example: 9 | /msg &nick& LOGOUT 10 | -------------------------------------------------------------------------------- /help/default/nickserv/regnolimit: -------------------------------------------------------------------------------- 1 | Help for REGNOLIMIT: 2 | 3 | REGNOLIMIT allows a user to maintain an 4 | unlimited amount of channel registrations. 5 | 6 | Syntax: REGNOLIMIT ON|OFF 7 | 8 | Examples: 9 | /msg &nick& REGNOLIMIT nenolod ON 10 | -------------------------------------------------------------------------------- /help/default/nickserv/resetpass: -------------------------------------------------------------------------------- 1 | Help for RESETPASS: 2 | 3 | RESETPASS sets a random password for the specified 4 | account. 5 | 6 | Syntax: RESETPASS 7 | 8 | Examples: 9 | /msg &nick& RESETPASS pfish 10 | -------------------------------------------------------------------------------- /help/default/nickserv/set_accountname: -------------------------------------------------------------------------------- 1 | Help for SET ACCOUNTNAME: 2 | 3 | SET ACCOUNTNAME allows you to change your account 4 | name to any nick registered to your account. 5 | Your account name is used in various places as 6 | a name for you. 7 | 8 | Syntax: SET ACCOUNTNAME 9 | -------------------------------------------------------------------------------- /help/default/nickserv/set_blocksendpass: -------------------------------------------------------------------------------- 1 | Help for SET BLOCKSENDPASS: 2 | 3 | SET BLOCKSENDPASS will OPT you out of the SENDPASS 4 | command usage, except by IRC Operators. 5 | 6 | Syntax: SET BLOCKSENDPASS ON|OFF 7 | 8 | Example: 9 | /msg &nick& SET BLOCKSENDPASS ON 10 | -------------------------------------------------------------------------------- /help/default/nickserv/set_emailmemos: -------------------------------------------------------------------------------- 1 | Help for SET EMAILMEMOS: 2 | 3 | This will forward memos sent to your account 4 | to the email address listed on your registration. 5 | 6 | Syntax: SET EMAILMEMOS [ON|OFF] 7 | 8 | Example: 9 | /msg &nick& SET EMAILMEMOS ON 10 | -------------------------------------------------------------------------------- /help/default/nickserv/set_hidelastlogin: -------------------------------------------------------------------------------- 1 | Help for SET HIDELASTLOGIN: 2 | 3 | SET HIDELASTLOGIN will OPT you out of the Last Login 4 | notice sent to you upon authenticating to Services. 5 | 6 | Syntax: SET HIDELASTLOGIN ON|OFF 7 | 8 | Example: 9 | /msg &nick& SET HIDELASTLOGIN ON 10 | -------------------------------------------------------------------------------- /help/default/nickserv/set_hidemail: -------------------------------------------------------------------------------- 1 | Help for SET HIDEMAIL: 2 | 3 | SET HIDEMAIL prevents an account's e-mail address 4 | from being shown to other users. 5 | 6 | Syntax: SET HIDEMAIL ON|OFF 7 | 8 | Example: 9 | /msg &nick& SET HIDEMAIL ON 10 | -------------------------------------------------------------------------------- /help/default/nickserv/set_language: -------------------------------------------------------------------------------- 1 | Help for SET LANGUAGE: 2 | 3 | SET LANGUAGE changes the language services 4 | uses to communicate with you. 5 | 6 | Syntax: SET LANGUAGE 7 | 8 | Example: 9 | /msg &nick& SET LANGUAGE en 10 | /msg &nick& SET LANGUAGE ru 11 | -------------------------------------------------------------------------------- /help/default/nickserv/set_nevergroup: -------------------------------------------------------------------------------- 1 | Help for SET NEVERGROUP: 2 | 3 | SET NEVERGROUP prevents others from adding you to 4 | group access lists. 5 | 6 | Syntax: SET NEVERGROUP ON|OFF 7 | 8 | Example: 9 | /msg &nick& SET NEVERGROUP ON 10 | -------------------------------------------------------------------------------- /help/default/nickserv/set_neverop: -------------------------------------------------------------------------------- 1 | Help for SET NEVEROP: 2 | 3 | SET NEVEROP prevents others from adding you to 4 | channel access lists. 5 | 6 | Syntax: SET NEVEROP ON|OFF 7 | 8 | Example: 9 | /msg &nick& SET NEVEROP ON 10 | -------------------------------------------------------------------------------- /help/default/nickserv/set_nogreet: -------------------------------------------------------------------------------- 1 | Help for SET NOGREET: 2 | 3 | This setting allows you to opt-out of channel greeting notices. 4 | 5 | Syntax: SET NOGREET ON|OFF 6 | 7 | Example: 8 | /msg &nick& SET NOGREET ON 9 | -------------------------------------------------------------------------------- /help/default/nickserv/set_nomemo: -------------------------------------------------------------------------------- 1 | Help for SET NOMEMO: 2 | 3 | This prevents people from being able to send you 4 | a memo. If you do not want to receive memos, you 5 | can just turn them off for your nick. 6 | 7 | Syntax: SET NOMEMO ON|OFF 8 | 9 | Example: 10 | /msg &nick& SET NOMEMO ON 11 | -------------------------------------------------------------------------------- /help/default/nickserv/set_noop: -------------------------------------------------------------------------------- 1 | Help for SET NOOP: 2 | 3 | SET NOOP prevents services from automatically 4 | opping you in channels you have access in. 5 | You can choose to op/voice yourself by using 6 | the OP and VOICE commands. 7 | 8 | Syntax: SET NOOP ON|OFF 9 | 10 | Example: 11 | /msg &nick& SET NOOP ON 12 | -------------------------------------------------------------------------------- /help/default/nickserv/set_password: -------------------------------------------------------------------------------- 1 | Help for SET PASSWORD: 2 | 3 | SET PASSWORD changes the password of an account. 4 | 5 | Syntax: SET PASSWORD 6 | 7 | Example: 8 | /msg &nick& SET PASSWORD swordfish 9 | -------------------------------------------------------------------------------- /help/default/nickserv/set_private: -------------------------------------------------------------------------------- 1 | Help for SET PRIVATE: 2 | 3 | SET PRIVATE hides various information about your 4 | account from other users. 5 | 6 | SET PRIVATE ON automatically enables HIDEMAIL too. 7 | 8 | Syntax: SET PRIVATE ON|OFF 9 | 10 | Example: 11 | /msg &nick& SET PRIVATE ON 12 | -------------------------------------------------------------------------------- /help/default/nickserv/set_privmsg: -------------------------------------------------------------------------------- 1 | Help for SET PRIVMSG: 2 | 3 | SET PRIVMSG causes Services to use private messages 4 | when talking to the user authenticated on this account. 5 | 6 | Syntax: SET PRIVMSG ON|OFF 7 | 8 | Example: 9 | /msg &nick& SET PRIVMSG ON 10 | -------------------------------------------------------------------------------- /help/default/nickserv/set_pubkey: -------------------------------------------------------------------------------- 1 | Help for SET PUBKEY: 2 | 3 | SET PUBKEY allows you to change your public 4 | key used for SASL ECDSA-NIST256p-CHALLENGE 5 | authentication. 6 | If no pubkey is given, your public key will 7 | be removed from the services database. 8 | 9 | Syntax: SET PUBKEY [] 10 | -------------------------------------------------------------------------------- /help/default/nickserv/status: -------------------------------------------------------------------------------- 1 | Help for STATUS: 2 | 3 | STATUS returns information about your current 4 | state. It will show information about your 5 | nickname, IRC operator, and SRA status. 6 | 7 | Syntax: STATUS 8 | 9 | Example: 10 | /msg &nick& STATUS 11 | -------------------------------------------------------------------------------- /help/default/nickserv/taxonomy: -------------------------------------------------------------------------------- 1 | Help for TAXONOMY: 2 | 3 | The taxonomy command lists metadata information associated 4 | with registered users. 5 | 6 | Examples: 7 | /msg &nick& TAXONOMY foo 8 | -------------------------------------------------------------------------------- /help/default/nickserv/verify: -------------------------------------------------------------------------------- 1 | Help for VERIFY: 2 | 3 | VERIFY confirms a change associated with 4 | your account registration. 5 | 6 | Syntax: VERIFY 7 | 8 | Example: 9 | /msg &nick& VERIFY REGISTER jenny 161803399 10 | /msg &nick& VERIFY EMAILCHG Aeriana 271828183 11 | -------------------------------------------------------------------------------- /help/default/oservice/identify: -------------------------------------------------------------------------------- 1 | Help for IDENTIFY: 2 | 3 | IDENTIFY authenticates for services operator 4 | privileges, if the operator or operator class 5 | has been defined as needing an additional 6 | password. 7 | 8 | You need to log in to your services account first. 9 | 10 | Syntax: IDENTIFY 11 | -------------------------------------------------------------------------------- /help/default/oservice/info: -------------------------------------------------------------------------------- 1 | Help for INFO: 2 | 3 | INFO shows some services configuration information 4 | that is not available to see elsewhere. 5 | 6 | Syntax: INFO 7 | -------------------------------------------------------------------------------- /help/default/oservice/mode: -------------------------------------------------------------------------------- 1 | Help for MODE: 2 | 3 | MODE allows for the editing of modes on a channel. Some networks 4 | will most likely find this command to be unethical. 5 | 6 | Syntax: MODE <#channel> [parameters] 7 | 8 | Examples: 9 | /msg &nick& MODE #heh -m 10 | /msg &nick& MODE #heh +o foo 11 | -------------------------------------------------------------------------------- /help/default/oservice/modlist: -------------------------------------------------------------------------------- 1 | Help for MODLIST: 2 | 3 | MODLIST displays a listing of all loaded 4 | modules and their addresses. 5 | 6 | Syntax: MODLIST 7 | -------------------------------------------------------------------------------- /help/default/oservice/modreload: -------------------------------------------------------------------------------- 1 | Help for ^BMODRELOAD^B: 2 | 3 | MODRELOAD reloads a currently loaded module. If the command fails, 4 | the module in question will be unloaded until errors are corrected. 5 | 6 | Syntax: MODRELOAD 7 | 8 | Example: 9 | /msg &nick& MODRELOAD chanserv/register 10 | -------------------------------------------------------------------------------- /help/default/oservice/override: -------------------------------------------------------------------------------- 1 | Help for OVERRIDE: 2 | 3 | OVERRIDE is used for running a command as another user. 4 | 5 | Syntax: OVERRIDE [params] 6 | 7 | Examples: 8 | /msg &nick& OVERRIDE dotslasher ChanServ FLAGS #cows nenolod +* 9 | -------------------------------------------------------------------------------- /help/default/oservice/raw: -------------------------------------------------------------------------------- 1 | Help for RAW: 2 | 3 | RAW injects data into the uplink. This 4 | command is for debugging only and should 5 | not be used unless you know what you're 6 | doing. 7 | 8 | Syntax: RAW 9 | 10 | Example: 11 | /msg &nick& RAW :&nick& OPERWALL :My admin is a loser 12 | -------------------------------------------------------------------------------- /help/default/oservice/readonly: -------------------------------------------------------------------------------- 1 | Help for READONLY: 2 | 3 | READONLY allows services operators to enable 4 | or disable readonly mode while services is 5 | running. 6 | 7 | Syntax: READONLY ON|OFF 8 | 9 | Examples: 10 | /msg &nick& READONLY ON 11 | -------------------------------------------------------------------------------- /help/default/oservice/rehash: -------------------------------------------------------------------------------- 1 | Help for REHASH: 2 | 3 | REHASH updates the database and reloads 4 | the configuration file. You can perform 5 | a rehash from system console with a kill -HUP 6 | command. 7 | 8 | Syntax: REHASH 9 | 10 | Example: 11 | /msg &nick& REHASH 12 | -------------------------------------------------------------------------------- /help/default/oservice/restart: -------------------------------------------------------------------------------- 1 | Help for RESTART: 2 | 3 | RESTART shuts down services and restarts them. 4 | 5 | Syntax: RESTART 6 | 7 | Example: 8 | /msg &nick& RESTART 9 | -------------------------------------------------------------------------------- /help/default/oservice/rnc: -------------------------------------------------------------------------------- 1 | Help for RNC: 2 | 3 | RNC shows the most common realnames on the network. 4 | 5 | Syntax: RNC [number] 6 | 7 | Example: 8 | /msg &nick& RNC 10 9 | -------------------------------------------------------------------------------- /help/default/oservice/set_chanexpire: -------------------------------------------------------------------------------- 1 | Help for SET CHANEXPIRE: 2 | 3 | SET CHANEXPIRE allows network staff to modify how often channel 4 | expirations will be checked. 5 | 6 | Syntax: SET CHANEXPIRE