Advertisement
Guest User

Untitled

a guest
Feb 1st, 2016
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 76.78 KB | None | 0 0
  1. /* This is an example configuration for Services.
  2. *
  3. * All statements end in semi-colons (';').
  4. * Shell style, C style, and C++ style comments may be used.
  5. *
  6. * Items marked with "(*)" are reconfigurable at runtime via REHASH.
  7. */
  8.  
  9. /******************************************************************************
  10. * MODULES SECTION. *
  11. ******************************************************************************/
  12.  
  13. /*
  14. * These are the modules included with the core distribution of Services.
  15. *
  16. * You may be interested in the atheme community modules distribution as
  17. * well, which adds additional features that may or may not be compatible
  18. * with the project paradigms intended for maintainance of the core of
  19. * atheme-services.
  20. *
  21. * Visit the atheme-services website for more information and to download them.
  22. *
  23. * Modules marked [experimental] will taint your atheme-services instance. Do
  24. * not file any bug reports with us about using Services with those modules;
  25. * they will be ignored.
  26. */
  27.  
  28. /* Dynamic security modules.
  29. *
  30. * WARNING: If you select one of these modules, the default security policy included
  31. * with Atheme may break. These modules are intended for people who know what they
  32. * are doing and understand the implications of what they do. Security modules which
  33. * are likely to break the default policy are prefixed with [!], if you are new to
  34. * Atheme, you should avoid enabling them.
  35. *
  36. * If you find your security policy is broken, you may debug it while allowing normal
  37. * operation of your IRC network by putting Atheme into "permissive mode". To do this,
  38. * enable general::permissive_mode.
  39. *
  40. * [!] Infer "command:" namespace permissions modules/security/cmdperm
  41. */
  42. #loadmodule "modules/security/cmdperm";
  43.  
  44. /* Protocol module.
  45. *
  46. * Please select a protocol module. Different servers use different protocols.
  47. * Below is a listing of ircd's known to work with the various protocol modules
  48. * available.
  49. *
  50. * Asuka 1.2.1 or later modules/protocol/asuka
  51. * Bahamut 1.8.x modules/protocol/bahamut
  52. * Charybdis IRCd modules/protocol/charybdis
  53. * DreamForge 4.6.7 or later modules/protocol/dreamforge
  54. * Hybrid 7.1.2 and later modules/protocol/hybrid
  55. * InspIRCd 1.2 [DEPRECATED] modules/protocol/inspircd
  56. * InspIRCd 2.0 modules/protocol/inspircd
  57. * ircd-ratbox 2.0 and later modules/protocol/ratbox
  58. * IRCNet ircd (ircd 2.11) modules/protocol/ircnet
  59. * ircd-seven modules/protocol/ircd-seven
  60. * ircu 2.10.11.07 or later modules/protocol/undernet
  61. * Nefarious IRCu 0.4.0 or later modules/protocol/nefarious
  62. * ngIRCd 19 or later [experimental] modules/protocol/ngircd
  63. * ShadowIRCd 5.0 or later modules/protocol/shadowircd
  64. * SporksIRCd modules/protocol/sporksircd
  65. * UnrealIRCd 3.2 or later modules/protocol/unreal
  66. *
  67. * If your IRCd vendor has supplied a module file, build it and load it here
  68. * instead of one above.
  69. */
  70. #loadmodule "modules/protocol/charybdis";
  71.  
  72. /* Protocol mixins.
  73. *
  74. * These should be used if you do not have/want certain features on your
  75. * network that your ircd normally has. If you do not know what this means,
  76. * you do not need any of them.
  77. *
  78. * Disable halfops modules/protocol/mixin_nohalfops
  79. * Disable holdnick (use enforcer clients) modules/protocol/mixin_noholdnick
  80. * Disable "protect" mode on channels modules/protocol/mixin_noprotect
  81. * Disable "owner" mode on channels modules/protocol/mixin_noowner
  82. */
  83. #loadmodule "modules/protocol/mixin_nohalfops";
  84. #loadmodule "modules/protocol/mixin_noholdnick";
  85. #loadmodule "modules/protocol/mixin_noprotect";
  86. #loadmodule "modules/protocol/mixin_noowner";
  87.  
  88. /* Database backend module.
  89. *
  90. * Please select a database backend module. Different backends allow for
  91. * different ways in which the services data can be manipulated. YOU MAY
  92. * ONLY HAVE ONE OF THESE BACKENDS LOADED.
  93. *
  94. * The following backends are available:
  95. *
  96. * Atheme 0.1 flatfile database format modules/backend/flatfile
  97. * Open Services Exchange database format modules/backend/opensex
  98. *
  99. * Most networks will want opensex.
  100. */
  101. loadmodule "modules/backend/opensex";
  102.  
  103. /* Crypto module.
  104. *
  105. * If you would like encryption for your services passwords, please
  106. * select a module here. Note that upon starting with a crypto module
  107. * YOUR PASSWORDS ARE IMMEDIATELY AND IRREVERSIBLY CONVERTED. Make at
  108. * least TWO backups of your database before experimenting with this.
  109. * If you have several thousand accounts, this conversion may take
  110. * appreciable time.
  111. *
  112. * The following crypto modules are available:
  113. *
  114. * PBKDF2 cryptography modules/crypto/pbkdf2
  115. * POSIX-style crypt(3) modules/crypto/posix
  116. * IRCServices (also Anope etc) compatibility modules/crypto/ircservices
  117. * Raw MD5 (Anope compatibility) modules/crypto/rawmd5
  118. * Raw SHA1 (Anope compatibility) modules/crypto/rawsha1
  119. *
  120. * The ircservices, rawmd5 and rawsha1 modules are only recommended for use with
  121. * a database converted from other services with password encryption.
  122. *
  123. * To transition between crypto schemes, load the preferred scheme first
  124. * and as users login, they will be migrated to the new preferred scheme. Like:
  125. * loadmodule "modules/crypto/pbkdf2";
  126. * loadmodule "modules/crypto/posix";
  127. * loadmodule "modules/crypto/ircservices";
  128. *
  129. * The rawsha1 and pbkdf2 modules require OpenSSL.
  130. */
  131. loadmodule "modules/crypto/posix";
  132.  
  133. /* Authentication module.
  134. *
  135. * These allow using passwords from an external system. The password given
  136. * when registering a new account is also checked against the external
  137. * system.
  138. *
  139. * The following authentication modules are available:
  140. *
  141. * LDAP modules/auth/ldap
  142. *
  143. * The LDAP module requires OpenLDAP client libraries. It uses them in a
  144. * synchronous manner, which means that an unresponsive LDAP server can
  145. * freeze services.
  146. */
  147. #loadmodule "modules/auth/ldap";
  148.  
  149. /* NickServ modules.
  150. *
  151. * Here you can disable or enable certain features of NickServ, by
  152. * defining which modules are loaded. You can even disable NickServ
  153. * entirely. Please note however, that an authentication service
  154. * (either NickServ, or UserServ) are required for proper functionality.
  155. *
  156. * The CrackLib password validation module requires CrackLib to be
  157. * installed on your system in order to use.
  158. *
  159. * Core components modules/nickserv/main
  160. * Nickname access lists modules/nickserv/access
  161. * Bad email address blocking modules/nickserv/badmail
  162. * CertFP fingerprint managment modules/nickserv/cert
  163. * CrackLib password validation modules/nickserv/cracklib
  164. * DROP command modules/nickserv/drop
  165. * Nickname enforcement modules/nickserv/enforce
  166. * GHOST command modules/nickserv/ghost
  167. * GROUP and UNGROUP commands modules/nickserv/group
  168. * HELP command modules/nickserv/help
  169. * Nickname expiry override (HOLD command) modules/nickserv/hold
  170. * IDENTIFY command modules/nickserv/identify
  171. * INFO command modules/nickserv/info
  172. * Last quit message in INFO modules/nickserv/info_lastquit
  173. * LIST command modules/nickserv/list
  174. * LISTMAIL command modules/nickserv/listmail
  175. * LISTOWNMAIL command modules/nickserv/listownmail
  176. * LOGIN command (for no_nick_ownership) modules/nickserv/login
  177. * LOGOUT command modules/nickserv/logout
  178. * MARK command modules/nickserv/mark
  179. * FREEZE command modules/nickserv/freeze
  180. * LISTCHANS command modules/nickserv/listchans
  181. * LISTGROUPS command modules/nickserv/listgroups
  182. * REGISTER command modules/nickserv/register
  183. * Bypass registration limits (REGNOLIMIT) modules/nickserv/regnolimit
  184. * Password reset (RESETPASS command) modules/nickserv/resetpass
  185. * RESTRICT command modules/nickserv/restrict
  186. * Password return (RETURN command) modules/nickserv/return
  187. * Password retrieval (SENDPASS command) modules/nickserv/sendpass
  188. * Password retrieval allowed to normal users modules/nickserv/sendpass_user
  189. * SET command core modules/nickserv/set_core
  190. * Change primary nickname (SET ACCOUNTNAME) modules/nickserv/set_accountname
  191. * SET EMAIL command modules/nickserv/set_email
  192. * SET EMAILMEMOS command modules/nickserv/set_emailmemos
  193. * SET ENFORCETIME command modules/nickserv/set_enforcetime
  194. * SET HIDEMAIL command modules/nickserv/set_hidemail
  195. * SET LANGUAGE command modules/nickserv/set_language
  196. * SET NEVERGROUP command modules/nickserv/set_nevergroup
  197. * SET NEVEROP command modules/nickserv/set_neverop
  198. * SET NOGREET command modules/nickserv/set_nogreet
  199. * SET NOMEMO command modules/nickserv/set_nomemo
  200. * SET NOOP command modules/nickserv/set_noop
  201. * SET PASSWORD command modules/nickserv/set_password
  202. * PRIVMSG instead of NOTICE (SET PRIVMSG cmd) modules/nickserv/set_privmsg
  203. * Account info hiding (SET PRIVATE command) modules/nickserv/set_private
  204. * SET PROPERTY command modules/nickserv/set_property
  205. * SET QUIETCHG command modules/nickserv/set_quietchg
  206. * Password retrieval uses code (SETPASS cmd) modules/nickserv/setpass
  207. * STATUS command modules/nickserv/status
  208. * Nickname metadata viewer (TAXONOMY command) modules/nickserv/taxonomy
  209. * VACATION command modules/nickserv/vacation
  210. * VERIFY command modules/nickserv/verify
  211. * VHOST command modules/nickserv/vhost
  212. */
  213. loadmodule "modules/nickserv/main";
  214. #loadmodule "modules/nickserv/access";
  215. loadmodule "modules/nickserv/badmail";
  216. #loadmodule "modules/nickserv/cert";
  217. #loadmodule "modules/nickserv/cracklib";
  218. loadmodule "modules/nickserv/drop";
  219. #loadmodule "modules/nickserv/enforce";
  220. loadmodule "modules/nickserv/ghost";
  221. loadmodule "modules/nickserv/group";
  222. loadmodule "modules/nickserv/help";
  223. loadmodule "modules/nickserv/hold";
  224. loadmodule "modules/nickserv/identify";
  225. loadmodule "modules/nickserv/info";
  226. #loadmodule "modules/nickserv/info_lastquit";
  227. loadmodule "modules/nickserv/list";
  228. loadmodule "modules/nickserv/listmail";
  229. #loadmodule "modules/nickserv/listownmail";
  230. #loadmodule "modules/nickserv/login";
  231. loadmodule "modules/nickserv/logout";
  232. loadmodule "modules/nickserv/mark";
  233. loadmodule "modules/nickserv/freeze";
  234. loadmodule "modules/nickserv/listchans";
  235. loadmodule "modules/nickserv/listgroups";
  236. loadmodule "modules/nickserv/register";
  237. loadmodule "modules/nickserv/regnolimit";
  238. loadmodule "modules/nickserv/resetpass";
  239. loadmodule "modules/nickserv/restrict";
  240. loadmodule "modules/nickserv/return";
  241. loadmodule "modules/nickserv/setpass";
  242. #loadmodule "modules/nickserv/sendpass";
  243. loadmodule "modules/nickserv/sendpass_user";
  244. loadmodule "modules/nickserv/set_core";
  245. loadmodule "modules/nickserv/set_accountname";
  246. loadmodule "modules/nickserv/set_email";
  247. loadmodule "modules/nickserv/set_emailmemos";
  248. #loadmodule "modules/nickserv/set_enforcetime";
  249. loadmodule "modules/nickserv/set_hidemail";
  250. loadmodule "modules/nickserv/set_language";
  251. loadmodule "modules/nickserv/set_nevergroup";
  252. loadmodule "modules/nickserv/set_neverop";
  253. loadmodule "modules/nickserv/set_nogreet";
  254. loadmodule "modules/nickserv/set_nomemo";
  255. loadmodule "modules/nickserv/set_noop";
  256. loadmodule "modules/nickserv/set_password";
  257. #loadmodule "modules/nickserv/set_privmsg";
  258. #loadmodule "modules/nickserv/set_private";
  259. loadmodule "modules/nickserv/set_property";
  260. loadmodule "modules/nickserv/set_quietchg";
  261. loadmodule "modules/nickserv/status";
  262. loadmodule "modules/nickserv/taxonomy";
  263. loadmodule "modules/nickserv/vacation";
  264. loadmodule "modules/nickserv/verify";
  265. loadmodule "modules/nickserv/vhost";
  266.  
  267. /* ChanServ modules.
  268. *
  269. * Here you can disable or enable certain features of ChanServ, by
  270. * defining which modules are loaded. You can even disable ChanServ
  271. * entirely. Please note that ChanServ requires an authentication
  272. * service, either NickServ or UserServ will do.
  273. *
  274. * Core components modules/chanserv/main
  275. * ACCESS command (simplified ACL editing) modules/chanserv/access
  276. * AKICK command modules/chanserv/akick
  277. * BAN/UNBAN commands modules/chanserv/ban
  278. * UNBAN self only (load ban or this not both) modules/chanserv/unban_self
  279. * CLOSE command modules/chanserv/close
  280. * CLONE command modules/chanserv/clone
  281. * CLEAR command modules/chanserv/clear
  282. * CLEAR BANS command modules/chanserv/clear_bans
  283. * CLEAR FLAGS command modules/chanserv/clear_flags
  284. * CLEAR USERS command modules/chanserv/clear_users
  285. * COUNT command modules/chanserv/count
  286. * DROP command modules/chanserv/drop
  287. * Forced flags changes modules/chanserv/fflags
  288. * FLAGS command modules/chanserv/flags
  289. * FREEZE command modules/chanserv/freeze
  290. * Forced foundership transfers modules/chanserv/ftransfer
  291. * GETKEY command modules/chanserv/getkey
  292. * HALFOP/DEHALFOP commands modules/chanserv/halfop
  293. * HELP command modules/chanserv/help
  294. * Channel expiry override (HOLD command) modules/chanserv/hold
  295. * INFO command modules/chanserv/info
  296. * INVITE command modules/chanserv/invite
  297. * KICK/KICKBAN commands modules/chanserv/kick
  298. * LIST command modules/chanserv/list
  299. * MARK command modules/chanserv/mark
  300. * Moderated channel registrations modules/chanserv/moderate
  301. * OP/DEOP commands modules/chanserv/op
  302. * OWNER/DEOWNER commands modules/chanserv/owner
  303. * PROTECT/DEPROTECT commands modules/chanserv/protect
  304. * QUIET command (+q support) modules/chanserv/quiet
  305. * QUIET command (+y support) syntaxIRCd only modules/chanserv/syntaxquiet
  306. * Channel takeover recovery (RECOVER command) modules/chanserv/recover
  307. * REGISTER command modules/chanserv/register
  308. * SET command core modules/chanserv/set_core
  309. * SET EMAIL command modules/chanserv/set_email
  310. * SET ENTRYMSG command modules/chanserv/set_entrymsg
  311. * SET FANTASY command modules/chanserv/set_fantasy
  312. * SET FOUNDER command modules/chanserv/set_founder
  313. * SET GAMESERV command modules/chanserv/set_gameserv
  314. * SET GUARD command modules/chanserv/set_guard
  315. * SET KEEPTOPIC command modules/chanserv/set_keeptopic
  316. * SET LIMITFLAGS command modules/chanserv/set_limitflags
  317. * SET MLOCK command modules/chanserv/set_mlock
  318. * SET PREFIX command modules/chanserv/set_prefix
  319. * Channel info hiding (SET PRIVATE command) modules/chanserv/set_private
  320. * SET PROPERTY command modules/chanserv/set_property
  321. * SET RESTRICTED command modules/chanserv/set_restricted
  322. * SET SECURE command modules/chanserv/set_secure
  323. * SET TOPICLOCK command modules/chanserv/set_topiclock
  324. * SET URL command modules/chanserv/set_url
  325. * SET VERBOSE command modules/chanserv/set_verbose
  326. * STATUS command modules/chanserv/status
  327. * SYNC command (and automatic ACL syncing) modules/chanserv/sync
  328. * Named Successor ACL flag modules/chanserv/successor_acl
  329. * Channel metadata viewer (TAXONOMY command) modules/chanserv/taxonomy
  330. * TEMPLATE command modules/chanserv/template
  331. * TOPIC/TOPICAPPEND commands modules/chanserv/topic
  332. * VOICE/DEVOICE commands modules/chanserv/voice
  333. * WHY command modules/chanserv/why
  334. * VOP/HOP/AOP/SOP commands modules/chanserv/xop
  335. * This module provides emulation of the ircservices XOP scheme ONLY.
  336. * Do not report discrepencies when using native commands to edit channel
  337. * ACLs. This is intentional.
  338. * Flood protection modules/chanserv/antiflood
  339. * This module should be loaded after at least chanserv/quiet if you want
  340. * the autoquiet feature to work.
  341. */
  342. loadmodule "modules/chanserv/main";
  343. loadmodule "modules/chanserv/access";
  344. loadmodule "modules/chanserv/akick";
  345. loadmodule "modules/chanserv/ban";
  346. #loadmodule "modules/chanserv/unban_self";
  347. loadmodule "modules/chanserv/clone";
  348. loadmodule "modules/chanserv/close";
  349. loadmodule "modules/chanserv/clear";
  350. loadmodule "modules/chanserv/clear_bans";
  351. loadmodule "modules/chanserv/clear_flags";
  352. loadmodule "modules/chanserv/clear_users";
  353. loadmodule "modules/chanserv/count";
  354. loadmodule "modules/chanserv/drop";
  355. #loadmodule "modules/chanserv/fflags";
  356. loadmodule "modules/chanserv/flags";
  357. loadmodule "modules/chanserv/freeze";
  358. loadmodule "modules/chanserv/ftransfer";
  359. loadmodule "modules/chanserv/getkey";
  360. #loadmodule "modules/chanserv/halfop";
  361. loadmodule "modules/chanserv/help";
  362. loadmodule "modules/chanserv/hold";
  363. loadmodule "modules/chanserv/info";
  364. loadmodule "modules/chanserv/invite";
  365. loadmodule "modules/chanserv/kick";
  366. loadmodule "modules/chanserv/list";
  367. loadmodule "modules/chanserv/mark";
  368. #loadmodule "modules/chanserv/moderate";
  369. loadmodule "modules/chanserv/op";
  370. #loadmodule "modules/chanserv/owner";
  371. #loadmodule "modules/chanserv/protect";
  372. #loadmodule "modules/chanserv/quiet";
  373. #loadmodule "modules/chanserv/syntaxquiet";
  374. loadmodule "modules/chanserv/recover";
  375. loadmodule "modules/chanserv/register";
  376. loadmodule "modules/chanserv/set_core";
  377. loadmodule "modules/chanserv/set_email";
  378. loadmodule "modules/chanserv/set_entrymsg";
  379. loadmodule "modules/chanserv/set_fantasy";
  380. loadmodule "modules/chanserv/set_founder";
  381. #loadmodule "modules/chanserv/set_gameserv";
  382. loadmodule "modules/chanserv/set_guard";
  383. loadmodule "modules/chanserv/set_keeptopic";
  384. #loadmodule "modules/chanserv/set_limitflags";
  385. loadmodule "modules/chanserv/set_mlock";
  386. loadmodule "modules/chanserv/set_prefix";
  387. #loadmodule "modules/chanserv/set_private";
  388. loadmodule "modules/chanserv/set_property";
  389. loadmodule "modules/chanserv/set_restricted";
  390. loadmodule "modules/chanserv/set_secure";
  391. loadmodule "modules/chanserv/set_topiclock";
  392. loadmodule "modules/chanserv/set_url";
  393. loadmodule "modules/chanserv/set_verbose";
  394. loadmodule "modules/chanserv/status";
  395. loadmodule "modules/chanserv/sync";
  396. #loadmodule "modules/chanserv/successor_acl";
  397. loadmodule "modules/chanserv/taxonomy";
  398. loadmodule "modules/chanserv/template";
  399. loadmodule "modules/chanserv/topic";
  400. loadmodule "modules/chanserv/voice";
  401. loadmodule "modules/chanserv/why";
  402. #loadmodule "modules/chanserv/xop";
  403. loadmodule "modules/chanserv/antiflood";
  404.  
  405. /* CHANFIX module.
  406. *
  407. * Here you can disable or enable certain features of CHANFIX, by
  408. * defining which modules are loaded.
  409. *
  410. * Core components modules/chanfix/main
  411. */
  412. #loadmodule "modules/chanfix/main";
  413.  
  414. /* OperServ modules.
  415. *
  416. * Here you can disable or enable certain features of OperServ, by
  417. * defining which modules are loaded.
  418. *
  419. * Core components modules/operserv/main
  420. * AKILL system modules/operserv/akill
  421. * CLEARCHAN command modules/operserv/clearchan
  422. * CLONES system modules/operserv/clones
  423. * COMPARE command modules/operserv/compare
  424. * GREPLOG command modules/operserv/greplog
  425. * HELP command modules/operserv/help
  426. * IGNORE system modules/operserv/ignore
  427. * IDENTIFY command modules/operserv/identify
  428. * INFO command modules/operserv/info
  429. * INJECT command modules/operserv/inject
  430. * JUPE command modules/operserv/jupe
  431. * MODE command modules/operserv/mode
  432. * MODINSPECT command modules/operserv/modinspect
  433. * MODLIST command modules/operserv/modlist
  434. * MODLOAD command modules/operserv/modload
  435. * MODRELOAD command modules/operserv/modreload
  436. * MODUNLOAD command modules/operserv/modunload
  437. * NOOP system modules/operserv/noop
  438. * Override access (OVERRIDE command) modules/operserv/override
  439. * Regex mass akill (RAKILL command) modules/operserv/rakill
  440. * RAW command modules/operserv/raw
  441. * READONLY command modules/operserv/readonly
  442. * REHASH command modules/operserv/rehash
  443. * RESTART command modules/operserv/restart
  444. * Display regex matching (RMATCH command) modules/operserv/rmatch
  445. * Most common realnames (RNC command) modules/operserv/rnc
  446. * RWATCH system modules/operserv/rwatch
  447. * Temporarily modify config options (SET command) modules/operserv/set
  448. * SGLINE system modules/operserv/sgline
  449. * SHUTDOWN command modules/operserv/shutdown
  450. * Non-config oper privileges (SOPER command) modules/operserv/soper
  451. * Oper privilege display (SPECS command) modules/operserv/specs
  452. * SQLINE system modules/operserv/sqline
  453. * UPDATE command modules/operserv/update
  454. * UPTIME command modules/operserv/uptime
  455. */
  456. loadmodule "modules/operserv/main";
  457. loadmodule "modules/operserv/akill";
  458. #loadmodule "modules/operserv/clearchan";
  459. #loadmodule "modules/operserv/clones";
  460. loadmodule "modules/operserv/compare";
  461. #loadmodule "modules/operserv/greplog";
  462. loadmodule "modules/operserv/help";
  463. loadmodule "modules/operserv/identify";
  464. loadmodule "modules/operserv/ignore";
  465. loadmodule "modules/operserv/info";
  466. loadmodule "modules/operserv/jupe";
  467. loadmodule "modules/operserv/mode";
  468. loadmodule "modules/operserv/modinspect";
  469. loadmodule "modules/operserv/modlist";
  470. loadmodule "modules/operserv/modload";
  471. loadmodule "modules/operserv/modunload";
  472. loadmodule "modules/operserv/modreload";
  473. loadmodule "modules/operserv/noop";
  474. #loadmodule "modules/operserv/override";
  475. #loadmodule "modules/operserv/rakill";
  476. loadmodule "modules/operserv/readonly";
  477. loadmodule "modules/operserv/rehash";
  478. loadmodule "modules/operserv/restart";
  479. loadmodule "modules/operserv/rmatch";
  480. loadmodule "modules/operserv/rnc";
  481. loadmodule "modules/operserv/rwatch";
  482. loadmodule "modules/operserv/set";
  483. loadmodule "modules/operserv/sgline";
  484. loadmodule "modules/operserv/shutdown";
  485. #loadmodule "modules/operserv/soper";
  486. loadmodule "modules/operserv/specs";
  487. loadmodule "modules/operserv/sqline";
  488. loadmodule "modules/operserv/update";
  489. loadmodule "modules/operserv/uptime";
  490.  
  491. /* MemoServ modules.
  492. *
  493. * Here you can disable or enable certain features of MemoServ, by
  494. * defining which modules are loaded. You can even disable MemoServ
  495. * entirely.
  496. *
  497. * Core components modules/memoserv/main
  498. * HELP command modules/memoserv/help
  499. * SEND command modules/memoserv/send
  500. * Channel memos (SENDOPS command) modules/memoserv/sendops
  501. * Group memos (SENDGROUP command) modules/memoserv/sendgroup
  502. * LIST command modules/memoserv/list
  503. * READ command modules/memoserv/read
  504. * FORWARD command modules/memoserv/forward
  505. * DELETE command modules/memoserv/delete
  506. * IGNORE command modules/memoserv/ignore
  507. */
  508. loadmodule "modules/memoserv/main";
  509. loadmodule "modules/memoserv/help";
  510. loadmodule "modules/memoserv/send";
  511. loadmodule "modules/memoserv/sendops";
  512. loadmodule "modules/memoserv/sendgroup";
  513. loadmodule "modules/memoserv/list";
  514. loadmodule "modules/memoserv/read";
  515. loadmodule "modules/memoserv/forward";
  516. loadmodule "modules/memoserv/delete";
  517. loadmodule "modules/memoserv/ignore";
  518.  
  519. /* Global module.
  520. *
  521. * Like the other services, the Global noticer is a module. You can
  522. * disable or enable it to your liking below. Please note that the
  523. * Global noticer is dependent on OperServ for full functionality.
  524. */
  525. loadmodule "modules/global/main";
  526.  
  527. /* InfoServ module.
  528. *
  529. * Like the other services, InfoServ is a module. You can disable or
  530. * enable it to your liking below.
  531. */
  532. loadmodule "modules/infoserv/main";
  533.  
  534. /* SASL agent module.
  535. *
  536. * Allows clients to authenticate to services via SASL with an appropriate
  537. * ircd. You need the core components and at least one mechanism.
  538. *
  539. * Core components modules/saslserv/main
  540. * PLAIN mechanism modules/saslserv/plain
  541. * ECDSA-NIST256p-CHALLENGE modules/saslserv/ecdsa-nist256p-challenge
  542. * AUTHCOOKIE mechanism (for IRIS) modules/saslserv/authcookie
  543. * EXTERNAL mechanism (IRCv3.1+) modules/saslserv/external
  544. *
  545. * ECDSA-NIST256p-CHALLENGE support requires that Atheme be compiled against OpenSSL.
  546. */
  547. loadmodule "modules/saslserv/main";
  548. loadmodule "modules/saslserv/plain";
  549. loadmodule "modules/saslserv/authcookie";
  550. #loadmodule "modules/saslserv/external";
  551. #loadmodule "modules/saslserv/ecdsa-nist256p-challenge"; /* requires SSL */
  552. /* GameServ modules.
  553. *
  554. * Here you can disable or enable certain features of GameServ, by
  555. * defining which modules are loaded. You can even disable GameServ
  556. * entirely.
  557. *
  558. * Core components modules/gameserv/main
  559. * DICE/WOD commands modules/gameserv/dice
  560. * EIGHTBALL command modules/gameserv/eightball
  561. * Game-specific dice calculators modules/gameserv/gamecalc
  562. * HELP commands modules/gameserv/help
  563. * LOTTERY command modules/gameserv/lottery
  564. * NAMEGEN command modules/gameserv/namegen
  565. * RPS command modules/gameserv/rps
  566. */
  567. #loadmodule "modules/gameserv/main";
  568. #loadmodule "modules/gameserv/dice";
  569. #loadmodule "modules/gameserv/eightball";
  570. #loadmodule "modules/gameserv/gamecalc";
  571. #loadmodule "modules/gameserv/help";
  572. #loadmodule "modules/gameserv/lottery";
  573. #loadmodule "modules/gameserv/namegen";
  574. #loadmodule "modules/gameserv/rps";
  575.  
  576. /* RPGServ modules.
  577. *
  578. * Here you can disable or enable certain features of RPGServ, by
  579. * defining which modules are loaded. You can even disable RPGServ
  580. * entirely.
  581. *
  582. * Core components modules/rpgserv/main
  583. * ENABLE/DISABLE commands modules/rpgserv/enable
  584. * HELP command modules/rpgserv/help
  585. * INFO command modules/rpgserv/info
  586. * LIST command modules/rpgserv/list
  587. * SEARCH command modules/rpgserv/search
  588. * SET commands modules/rpgserv/set
  589. */
  590. #loadmodule "modules/rpgserv/main";
  591. #loadmodule "modules/rpgserv/enable";
  592. #loadmodule "modules/rpgserv/help";
  593. #loadmodule "modules/rpgserv/info";
  594. #loadmodule "modules/rpgserv/list";
  595. #loadmodule "modules/rpgserv/search";
  596. #loadmodule "modules/rpgserv/set";
  597.  
  598. /* BotServ modules.
  599. *
  600. * Here you can disable or enable certain features of BotServ, by
  601. * defining which modules are loaded. You can even disable BotServ
  602. * entirely.
  603. *
  604. * Core components modules/botserv/main
  605. * HELP command modules/botserv/help
  606. * INFO command modules/botserv/info
  607. * NPC commands (SAY, ACT) modules/botserv/bottalk
  608. * SET command (required for SET commands) modules/botserv/set_core
  609. * SET FANTASY command modules/botserv/set_fantasy
  610. * SET NOBOT command modules/botserv/set_nobot
  611. * SET PRIVATE command modules/botserv/set_private
  612. */
  613. #loadmodule "modules/botserv/main";
  614. #loadmodule "modules/botserv/help";
  615. #loadmodule "modules/botserv/info";
  616. #loadmodule "modules/botserv/bottalk";
  617. #loadmodule "modules/botserv/set_core";
  618. #loadmodule "modules/botserv/set_fantasy";
  619. #loadmodule "modules/botserv/set_nobot";
  620. #loadmodule "modules/botserv/set_private";
  621.  
  622. /* HostServ modules.
  623. *
  624. * Here you can disable or enable certain features of HostServ, by
  625. * defining which modules are loaded. You can even disable HostServ
  626. * entirely.
  627. *
  628. * HostServ is a more complex, and optional virtual host management service.
  629. * Users wishing only to set vhosts need not use it (they can use the builtin
  630. * vhost management of NickServ instead).
  631. *
  632. * Core components modules/hostserv/main
  633. * HELP command modules/hostserv/help
  634. * OFFER system modules/hostserv/offer
  635. * ON and OFF commands modules/hostserv/onoff
  636. * REQUEST system modules/hostserv/request
  637. * VHOST and LISTVHOST commands modules/hostserv/vhost
  638. * VHOSTNICK command modules/hostserv/vhostnick
  639. * GROUP command modules/hostserv/group
  640. * DROP command modules/hostserv/drop
  641. */
  642. #loadmodule "modules/hostserv/main";
  643. #loadmodule "modules/hostserv/help";
  644. #loadmodule "modules/hostserv/onoff";
  645. #loadmodule "modules/hostserv/offer";
  646. #loadmodule "modules/hostserv/request";
  647. #loadmodule "modules/hostserv/vhost";
  648. #loadmodule "modules/hostserv/vhostnick";
  649. #loadmodule "modules/hostserv/group";
  650. #loadmodule "modules/hostserv/drop";
  651.  
  652. /* HelpServ modules.
  653. * HelpServ allows users to request help from network staff in a few different ways.
  654. *
  655. * Core components modules/helpserv/main
  656. * HELPME command modules/helpserv/helpme
  657. * Help Ticket system modules/helpserv/ticket
  658. * Service List modules/helpserv/services
  659. *
  660. * The ticket system works like a bugtracker ot helpdesk ticket system, HELPME
  661. * works like a one-time alert. You should probably only load one of the two systems.
  662. */
  663. #loadmodule "modules/helpserv/main";
  664. #loadmodule "modules/helpserv/helpme";
  665. #loadmodule "modules/helpserv/ticket";
  666. #loadmodule "modules/helpserv/services";
  667.  
  668. /* Channel listing service.
  669. *
  670. * Allows users to list channels with more flexibility than the /list
  671. * command.
  672. *
  673. * Core components modules/alis/main
  674. */
  675. #loadmodule "modules/alis/main";
  676.  
  677. /* StatServ module.
  678. * StatServ provides basic statistics and split tracking.
  679. *
  680. * Core components modules/statserv/main
  681. * CHANNEL command modules/statserv/channel
  682. * NETSPLIT command modules/statserv/netsplit
  683. * SERVER command modules/statserv/server
  684. */
  685. loadmodule "modules/statserv/main";
  686. #loadmodule "modules/statserv/channel";
  687. loadmodule "modules/statserv/netsplit";
  688. loadmodule "modules/statserv/server";
  689.  
  690. /* GroupServ module.
  691. * GroupServ allows users to create groups to easily mass-manage channel
  692. * access and more.
  693. *
  694. * Core components modules/groupserv/main
  695. * ACSNOLIMIT command modules/groupserv/acsnolimit
  696. * DROP command modules/groupserv/drop
  697. * FDROP command modules/groupserv/fdrop
  698. * FFLAGS command modules/groupserv/fflags
  699. * FLAGS command modules/groupserv/flags
  700. * HELP command modules/groupserv/help
  701. * INFO command modules/groupserv/info
  702. * JOIN command modules/groupserv/join
  703. * LIST command modules/groupserv/list
  704. * LISTCHANS command modules/groupserv/listchans
  705. * REGISTER command modules/groupserv/register
  706. * REGNOLIMIT command modules/groupserv/regnolimit
  707. * INVITE command modules/groupserv/invite
  708. * SET command modules/groupserv/set
  709. * SET CHANNEL command modules/groupserv/set_channel
  710. * SET DESCRIPTION command modules/groupserv/set_description
  711. * SET EMAIL command modules/groupserv/set_email
  712. * SET JOINFLAGS command modules/groupserv/set_joinflags
  713. * SET OPEN command modules/groupserv/set_open
  714. * SET PUBLIC command modules/groupserv/set_public
  715. * SET URL command modules/groupserv/set_url
  716. *
  717. */
  718. loadmodule "modules/groupserv/main";
  719. loadmodule "modules/groupserv/acsnolimit";
  720. loadmodule "modules/groupserv/drop";
  721. loadmodule "modules/groupserv/fdrop";
  722. loadmodule "modules/groupserv/fflags";
  723. loadmodule "modules/groupserv/flags";
  724. loadmodule "modules/groupserv/help";
  725. loadmodule "modules/groupserv/info";
  726. loadmodule "modules/groupserv/join";
  727. loadmodule "modules/groupserv/list";
  728. loadmodule "modules/groupserv/listchans";
  729. loadmodule "modules/groupserv/register";
  730. loadmodule "modules/groupserv/regnolimit";
  731. #loadmodule "modules/groupserv/invite";
  732. loadmodule "modules/groupserv/set";
  733. loadmodule "modules/groupserv/set_channel";
  734. loadmodule "modules/groupserv/set_description";
  735. loadmodule "modules/groupserv/set_email";
  736. loadmodule "modules/groupserv/set_joinflags";
  737. loadmodule "modules/groupserv/set_open";
  738. loadmodule "modules/groupserv/set_public";
  739. loadmodule "modules/groupserv/set_url";
  740.  
  741. /*
  742. * Various modules.
  743. *
  744. * Atheme includes an optional HTTP server that can be used for integration
  745. * with portal software and other useful things. To enable it, load this
  746. * module, and uncomment the httpd { } block towards the bottom of the config.
  747. *
  748. * HTTP Server modules/misc/httpd
  749. */
  750. loadmodule "modules/misc/httpd";
  751.  
  752. /* XMLRPC server module.
  753. *
  754. * The XML-RPC handler requires modules/misc/httpd to be loaded as it merely
  755. * registers a path handler for XML-RPC. The path used for XML-RPC is /xmlrpc.
  756. *
  757. * XMLRPC handler for the httpd modules/transport/xmlrpc
  758. */
  759. loadmodule "modules/transport/xmlrpc";
  760.  
  761. /* Extended target entity types. [EXPERIMENTAL]
  762. *
  763. * Atheme can set up special target mapping entities which match multiple
  764. * users in channel access entries. These target mapping entity types are
  765. * defined through the 'exttarget' modules listed below.
  766. *
  767. * Exttarget handling core modules/exttarget/main
  768. * $oper exttarget match type modules/exttarget/oper
  769. * $registered exttarget match type modules/exttarget/registered
  770. * $channel exttarget match type modules/exttarget/channel
  771. * $chanacs exttarget match type modules/exttarget/chanacs
  772. */
  773. #loadmodule "modules/exttarget/main";
  774. #loadmodule "modules/exttarget/oper";
  775. #loadmodule "modules/exttarget/registered";
  776. #loadmodule "modules/exttarget/channel";
  777. #loadmodule "modules/exttarget/chanacs";
  778.  
  779. /* Other modules.
  780. *
  781. * Put any other modules you want to load on startup here. The path
  782. * is relative to PREFIX or PREFIX/lib/atheme, depending on how Atheme
  783. * was compiled.
  784. */
  785. #loadmodule "modules/contrib/ns_listlogins";
  786.  
  787. /******************************************************************************
  788. * SERVICES RUNTIME CONFIGURATION SECTION. *
  789. ******************************************************************************/
  790.  
  791. /* The serverinfo{} block defines how we appear on the IRC network. */
  792. serverinfo {
  793. /* name
  794. * The server name that this program uses on the IRC network.
  795. * This is the name you'll have to use in C:/N:Lines. It must be
  796. * unique on the IRC network and contain at least one dot, but does
  797. * not have to be equal to any DNS name.
  798. */
  799. name = "services.fenixatomic.net";
  800.  
  801. /* desc
  802. * The ``server comment'' we send to the IRC network.
  803. */
  804. desc = "Atheme IRC Services";
  805.  
  806. /* numeric
  807. * Some protocol drivers (Charybdis, Ratbox2, Hybrid, P10, IRCNet)
  808. * require a server id, also known as a numeric. Please consult your
  809. * ircd's documentation when providing this value.
  810. */
  811. numeric = "00A";
  812.  
  813. /* (*)recontime
  814. * The number of seconds before we reconnect to the uplink.
  815. */
  816. recontime = 10;
  817.  
  818. /* (*)netname
  819. * The name of your network.
  820. */
  821. netname = "misconfigured network";
  822.  
  823. /* (*)hidehostsuffix
  824. * P10 +x host hiding gives <account>.<hidehostsuffix>.
  825. * If using +x on asuka/bircd/undernet, this must agree
  826. * with F:HIDDEN_HOST.
  827. */
  828. hidehostsuffix = "users.misconfigured";
  829.  
  830. /* (*)adminname
  831. * The name of the person running this service.
  832. */
  833. adminname = "misconfigured admin";
  834.  
  835. /* (*)adminemail
  836. * The email address of the person running this service.
  837. */
  838. adminemail = "misconfigured@admin.tld";
  839.  
  840. /* (*)registeremail
  841. * The email address that messages should be originated from.
  842. * If this is not set, then "noreply.$adminemail" will be used.
  843. */
  844. registeremail = "noreply@admin.tld";
  845.  
  846. /* (*)hidden
  847. * If this is enabled, Atheme will indicate to the uplink IRCd
  848. * that it should not be included in /links output. This only works
  849. * on the following IRCds at present: charybdis, hybrid, ircd-seven,
  850. * ratbox, shadowircd, sporksircd.
  851. */
  852. #hidden;
  853.  
  854. /* (*)mta
  855. * The full path to your mail transfer agent.
  856. * This is used for email authorization and password retrieval.
  857. * Comment this out to disable sending email.
  858. * Warning: sending email can disclose the IP of your services
  859. * unless you take precautions (not discussed here further).
  860. */
  861. mta = "/usr/sbin/sendmail";
  862.  
  863. /* (*)loglevel
  864. * Specify the default categories of logging information to record
  865. * in the master Atheme logfile, usually var/atheme.log.
  866. *
  867. * Options include:
  868. * debug, all - meta-keyword for all possible categories
  869. * trace - meta-keyword for a little bit of info
  870. * misc - like trace, but with some more miscillaneous info
  871. * notice - meta-keyword for notice-like information
  872. * ------------------------------------------------------------------------------
  873. * error - critical errors
  874. * info - miscillaneous log notices
  875. * verbose - A bit more verbose than info, not quite as spammy as debug
  876. * commands - all command use
  877. * admin - administrative command use
  878. * register - account and channel registrations
  879. * set - changes of account or channel settings
  880. * request - user requests (currently only vhosts)
  881. * network - log notices related to network status
  882. * rawdata - log raw data sent and received by services
  883. * wallops - <not yet used>
  884. */
  885. loglevel = { error; info; admin; network; wallops; };
  886.  
  887. /* (*)maxlogins
  888. * What is the maximum number of sessions allowed to login to one
  889. * username? This reduces potential abuse. It is only checked on login.
  890. */
  891. maxlogins = 5;
  892.  
  893. /* (*)maxusers
  894. * What are the maximum usernames that one email address can register?
  895. * Set to 0 to disable this check (it can be slow currently).
  896. */
  897. maxusers = 5;
  898.  
  899. /* (*)mdlimit
  900. * How many metadata entries can be added to an object?
  901. */
  902. mdlimit = 30;
  903.  
  904. /* (*)emaillimit, emailtime
  905. * The maximum number of emails allowed to be sent in
  906. * that amount of time (seconds). If this is exceeded,
  907. * wallops will be sent, at most one per minute.
  908. */
  909. emaillimit = 10;
  910. emailtime = 300;
  911.  
  912. /* (*)auth
  913. * What type of username registration authorization do you want?
  914. * If "email", Atheme will send a confirmation email to the address to
  915. * ensure it's valid. If registration is not completed within one day,
  916. * the username will expire. If "none", no message will be sent and
  917. * the username will be fully registered.
  918. * Valid values are: email, none.
  919. */
  920. auth = none;
  921.  
  922. /* casemapping
  923. * Specify the casemapping to use. Almost all TSora (and any that follow
  924. * the RFC correctly) ircds will use rfc1459 casemapping. Bahamut, Unreal,
  925. * and other ``Dalnet'' ircds will use ascii casemapping.
  926. * Valid values are: rfc1459, ascii.
  927. */
  928. casemapping = rfc1459;
  929. };
  930.  
  931. /* uplink{} blocks define connections to IRC servers.
  932. * Multiple may be defined but only one will be used at a time (IRC
  933. * being a tree shaped network). Atheme does not currently link over SSL.
  934. * To link Atheme over ssl, please connect Atheme to a local ircd and have that
  935. * connect to your network over SSL.
  936. */
  937. uplink "irc.example.net" {
  938. // The server name of the ircd you're linking to goes above.
  939.  
  940. // host
  941. // The hostname to connect to.
  942. host = "127.0.0.1";
  943.  
  944. // vhost
  945. // The source IP to connect from, used on machines with multiple interfaces.
  946. #vhost = "192.0.2.5";
  947.  
  948. // send_password
  949. // The password sent for linking.
  950. send_password = "mypassword";
  951.  
  952. // receive_password
  953. // The password received for linking.
  954. receive_password = "theirpassword";
  955.  
  956. // port
  957. // The port to connect to.
  958. port = 6667;
  959. };
  960.  
  961. /* this is an example for using an IPv6 address as an uplink */
  962. uplink "irc6.example.net" {
  963. host = "::1";
  964.  
  965. // password
  966. // If you want to have same send_password and accept_password, you
  967. // can specify both using 'password' instead of individually.
  968. password = "linkage";
  969.  
  970. port = 6667;
  971. };
  972.  
  973. /* Services configuration.
  974. *
  975. * Each of these blocks can contain a nick, user, host, real and aliases.
  976. * Several of them also have options specific to the service.
  977. */
  978.  
  979. /* NickServ configuration.
  980. *
  981. * The nickserv {} block contains settings specific to the NickServ modules.
  982. *
  983. * NickServ provides nickname or username registration and authentication
  984. * services. It provides necessary authentication features required for
  985. * Services to operate correctly. You should make sure these settings
  986. * are properly configured for your network.
  987. */
  988. nickserv {
  989. /* (*)spam
  990. * Have NickServ tell people about how great it and ChanServ are.
  991. */
  992. spam;
  993.  
  994. /* no_nick_ownership
  995. * Enable this to disable nickname ownership (old userserv{}).
  996. * This changes changes "nickname" to "account" in most messages,
  997. * disables GHOST on users not logged in to the same account and
  998. * makes the spam directive ineffective.
  999. * It is suggested that the nick be set to UserServ, login.so
  1000. * be loaded instead of identify.so and ghost.so not be loaded.
  1001. */
  1002. #no_nick_ownership;
  1003.  
  1004. /* (*)nick
  1005. * The nickname we want NickServ to have.
  1006. */
  1007. nick = "NickServ";
  1008.  
  1009. /* (*)user
  1010. * The username we want NickServ to have.
  1011. */
  1012. user = "NickServ";
  1013.  
  1014. /* (*)host
  1015. * The hostname we want NickServ to have.
  1016. */
  1017. host = "services.fenixatomic.net";
  1018.  
  1019. /* (*)real
  1020. * The realname (gecos) information we want NickServ to have.
  1021. */
  1022. real = "Nickname Services";
  1023.  
  1024. /* (*)aliases
  1025. * Command aliases for NickServ.
  1026. */
  1027. aliases {
  1028. "ID" = "IDENTIFY";
  1029. "MYACCESS" = "LISTCHANS";
  1030. };
  1031.  
  1032. /* (*)access
  1033. * This block allows you to modify the access level required to run
  1034. * commands. The list of possible accesses are listed in the operclass
  1035. * section later in this .conf . Note that you can only set the access
  1036. * on an actual command, not an alias.
  1037. */
  1038. access {
  1039. };
  1040.  
  1041. /* (*)maxnicks
  1042. * If GROUP is loaded, what are the maximum nicknames that one
  1043. * username can register?
  1044. */
  1045. maxnicks = 5;
  1046.  
  1047. /* (*)expire
  1048. * The number of days before inactive registrations are expired.
  1049. */
  1050. expire = 30;
  1051.  
  1052. /* (*)enforce_expire
  1053. * The number of days of no use after which to ignore enforcement
  1054. * settings on nicks.
  1055. */
  1056. #enforce_expire = 14;
  1057.  
  1058. /* (*)enforce_delay
  1059. * The number of seconds to delay nickchange enforcement settings
  1060. * on nicks.
  1061. */
  1062. #enforce_delay = 30;
  1063.  
  1064. /* (*)enforce_prefix
  1065. * The prefix to use when changing the user's nick on enforcement
  1066. */
  1067. #enforce_prefix = "Guest";
  1068.  
  1069. /* (*)cracklib_dict
  1070. * The location and filename prefix of the cracklib dictionaries
  1071. * for use with nickserv/cracklib. This must be provided if you are
  1072. * going to be using nickserv/cracklib.
  1073. */
  1074. #cracklib_dict = "/var/cache/cracklib/cracklib_dict";
  1075.  
  1076. /* (*)cracklib_warn
  1077. * If this option is set and nickserv/cracklib is loaded, nickserv will just
  1078. * warn users that their password is insecure, recommend they change it and
  1079. * still register the nick. If this option is unset, it will refuse to
  1080. * register the nick at all until the user chooses a better password.
  1081. */
  1082. #cracklib_warn;
  1083.  
  1084. /* (*)emailexempts
  1085. * A list of email addresses that will be exempt from the check of how many
  1086. * accounts one user may have. Any email address in this block may register
  1087. * an unlimited number of accounts/usernames.
  1088. */
  1089. emailexempts {
  1090. };
  1091. };
  1092.  
  1093. /* ChanServ configuration.
  1094. *
  1095. * The chanserv {} block contains settings specific to the ChanServ modules.
  1096. *
  1097. * ChanServ provides channel registration services, which allows users to own
  1098. * channels. It is not required, but is strongly recommended.
  1099. */
  1100. chanserv {
  1101. /* (*)nick
  1102. * The nickname we want the client to have.
  1103. */
  1104. nick = "ChanServ";
  1105.  
  1106. /* (*)user
  1107. * The username we want the client to have.
  1108. */
  1109. user = "ChanServ";
  1110.  
  1111. /* (*)host
  1112. * The hostname we want the client to have.
  1113. */
  1114. host = "services.fenixatomic.net";
  1115.  
  1116. /* (*)real
  1117. * The GECOS of the client.
  1118. */
  1119. real = "Channel Services";
  1120.  
  1121. /* (*)aliases
  1122. * Command aliases for ChanServ.
  1123. */
  1124. aliases {
  1125. };
  1126.  
  1127. /* (*)access
  1128. * Command access changes for ChanServ.
  1129. */
  1130. access {
  1131. };
  1132.  
  1133. /* (*)maxchans
  1134. * What are the maximum channels that one username can register?
  1135. */
  1136. maxchans = 5;
  1137.  
  1138. /* fantasy
  1139. * Do you want to enable fantasy commands? This can
  1140. * use a lot of CPU up, and will only work if you have
  1141. * join_chans (in general) enabled as well.
  1142. */
  1143. fantasy;
  1144.  
  1145. /* (*) hide_xop
  1146. * Hide the XOP templates from sight. This is useful if you
  1147. * want to use templates and not have the XOP templates displayed.
  1148. */
  1149. #hide_xop;
  1150.  
  1151. /* (*) templates
  1152. * Defines what flags the global templates comprise.
  1153. *
  1154. * For the special XOP templates:
  1155. * These should all be different and not equal to the empty set,
  1156. * except that hop may be equal to vop to disable hop.
  1157. * Each subsequent level should have more flags (except +VHO).
  1158. * For optimal functioning of /cs forcexop, aop should not have
  1159. * any of +sRf, hop should not have any of +sRfoOr and vop should
  1160. * not have any of +sRfoOrhHt.
  1161. * If this is not specified, the values of Atheme 0.3 are used,
  1162. * which are generally less intuitive than these.
  1163. * Note: changing these leaves the flags of existing channel access
  1164. * entries unchanged, thus removing them of the view of /cs xop list.
  1165. * Usually the channel founder can use /cs forcexop to update the
  1166. * entries to the new levels.
  1167. *
  1168. * Advice:
  1169. * If you want to add a co-founder role, remove the flags permission
  1170. * from the SOP role, and define a co-founder role with flags
  1171. * permissions.
  1172. */
  1173. templates {
  1174. vop = "+AV";
  1175. hop = "+AHhitrv";
  1176. aop = "+AOhiortv";
  1177. sop = "+AOafhiorstv";
  1178.  
  1179. founder = "+AFORafhiorstv";
  1180.  
  1181. /* some examples (which are commented out...) */
  1182. #member = "+Ai";
  1183. #op = "+AOiortv";
  1184. };
  1185.  
  1186. /* (*) deftemplates
  1187. * Defines default templates to set on new channels, as a
  1188. * space-separated list of name=+flags pairs.
  1189. * Note: at this time no syntax checking is done on this; it
  1190. * is your own responsibility to make sure it is correct.
  1191. */
  1192. #deftemplates = "MEMBER=+Ai OP=+AOiortv";
  1193.  
  1194. /* (*) changets
  1195. * Change the channel TS to the registration time when someone
  1196. * recreates a registered channel, ensuring that they are deopped
  1197. * and all their modes are undone. Note that this involves ChanServ
  1198. * joining. When the channel was not recreated no deops will be done
  1199. * (apart from the SECURE option).
  1200. * This also solves the "join-mode" problem where someone recreates
  1201. * a registered channel and then sets some modes before they are
  1202. * deopped.
  1203. * This is currently supported for charybdis, hybrid, ratbox,
  1204. * bahamut and inspircd 1.1+. For charybdis, hybrid and ratbox
  1205. * it only fully works with TS6, with TS5 bans and last-moment modes
  1206. * will still apply.
  1207. * (That can also be used to advantage, when first enabling this.)
  1208. */
  1209. #changets;
  1210.  
  1211. /* (*) trigger
  1212. * This setting allows you to change the trigger prefix for
  1213. * ChanServ's in-channel command feature (disableable via chanserv::fantasy).
  1214. * If no setting is provided, the default is used, which is "!".
  1215. *
  1216. * Other settings you could consider trying: ".", "~", "?", "`", "'".
  1217. */
  1218. trigger = "!";
  1219.  
  1220. /* (*)expire
  1221. * The number of days before inactive registrations are expired.
  1222. */
  1223. expire = 30;
  1224.  
  1225. /* (*)maxchanacs
  1226. * The maximum number of entries allowed in a channel's access list
  1227. * (both channel ops and akicks), 0 for unlimited.
  1228. */
  1229. maxchanacs = 0;
  1230.  
  1231. /* (*)maxfounders
  1232. * The maximum number of founders allowed in a channel.
  1233. * Note that all founders have the exact same privileges and
  1234. * the list of founders is shown in various places.
  1235. */
  1236. maxfounders = 4;
  1237.  
  1238. /* (*)founder_flags
  1239. * The flags a user will get when they register a new channel.
  1240. * This MUST include at least 'F' or it will be ignored.
  1241. * If it is not set, Atheme will give the user all channel flags.
  1242. */
  1243. #founder_flags = "AFORfiorstv";
  1244.  
  1245. /* (*)akick_time
  1246. * The default expiration time (in minutes) for AKICKs.
  1247. * Comment this option out or set to zero for permanent AKICKs
  1248. * by default (the old behaviour).
  1249. */
  1250. #akick_time = 10;
  1251.  
  1252. /* (*)antiflood_enforce_method
  1253. * The enforcement method to use for flood protection by default.
  1254. * This may be overridden by channel staff.
  1255. * Available options are: quiet, kickban and akill.
  1256. */
  1257. antiflood_enforce_method = quiet;
  1258. };
  1259.  
  1260. /* CHANFIX configuration.
  1261. *
  1262. * The chanfix {} block contains settings specific to the CHANFIX modules.
  1263. *
  1264. * CHANFIX provides channel recovery services without registration, which
  1265. * allows users to maintain control of channels even if ChanServ is not used
  1266. * to register them.
  1267. */
  1268. chanfix {
  1269. /* (*)nick
  1270. * The nickname we want the client to have.
  1271. */
  1272. nick = "ChanFix";
  1273.  
  1274. /* (*)user
  1275. * The username we want the client to have.
  1276. */
  1277. user = "ChanFix";
  1278.  
  1279. /* (*)host
  1280. * The hostname we want the client to have.
  1281. */
  1282. host = "services.fenixatomic.net";
  1283.  
  1284. /* (*)real
  1285. * The GECOS of the client.
  1286. */
  1287. real = "Channel Fixing Service";
  1288.  
  1289. /* (*)autofix
  1290. * Automatically fix channels if they become opless and meet fixing
  1291. * criteria.
  1292. */
  1293. autofix;
  1294. };
  1295.  
  1296. /* Global noticing configuration.
  1297. *
  1298. * The global {} block contains settings specific to the Global notice module.
  1299. *
  1300. * The Global notice module provides the ability to mass-notify a network.
  1301. */
  1302. global {
  1303. /* (*)nick
  1304. * Sets the nick used for sending out a global notice.
  1305. */
  1306. nick = "Global";
  1307.  
  1308. /* (*)user
  1309. * Sets the username used for this client.
  1310. */
  1311. user = "Global";
  1312.  
  1313. /* (*)host
  1314. * The hostname used for this client.
  1315. */
  1316. host = "services.fenixatomic.net";
  1317.  
  1318. /* (*)real
  1319. * The GECOS (real name) of the client.
  1320. */
  1321. real = "Network Announcements";
  1322. };
  1323.  
  1324. /* InfoServ configuration
  1325. *
  1326. * The infoserv {} block contains settings specific to the InfoServ module.
  1327. *
  1328. * The InfoServ modules provides the ability to mass-notify a network and send
  1329. * news to users when they connect to the network.
  1330. */
  1331. infoserv {
  1332. /* (*)nick
  1333. * Sets the nick used for InfoServ and sending out informational messages.
  1334. */
  1335. nick = "InfoServ";
  1336.  
  1337. /* (*)user
  1338. * Sets the username used for this client.
  1339. */
  1340. user = "InfoServ";
  1341.  
  1342. /* (*)host
  1343. * The hostname used for this client,
  1344. */
  1345. host = "services.fenixatomic.net";
  1346.  
  1347. /* (*)real
  1348. * The GECOS (real name) of the client.
  1349. */
  1350. real = "Information Service";
  1351.  
  1352. /* (*)logoninfo_count
  1353. * The number of InfoServ messages a user will see upon connect.
  1354. * If there are more than this number, the user will be able to
  1355. * see the rest with /msg infoserv list .
  1356. */
  1357. logoninfo_count = 3;
  1358. };
  1359.  
  1360. /* OperServ configuration.
  1361. *
  1362. * The operserv {} block contains settings specific to the OperServ modules.
  1363. *
  1364. * OperServ provides essential network management tools for IRC operators
  1365. * on the IRC network.
  1366. */
  1367. operserv {
  1368. /* (*)nick
  1369. * The nickname we want the Operator Service to have.
  1370. */
  1371. nick = "OperServ";
  1372.  
  1373. /* (*)user
  1374. * Sets the username used for this client.
  1375. */
  1376. user = "OperServ";
  1377.  
  1378. /* (*)host
  1379. * The hostname used for this client.
  1380. */
  1381. host = "services.fenixatomic.net";
  1382.  
  1383. /* (*)real
  1384. * The GECOS (real name) of the client.
  1385. */
  1386. real = "Operator Services";
  1387.  
  1388. /* (*)aliases
  1389. * Command aliases for OperServ.
  1390. */
  1391. aliases {
  1392. };
  1393.  
  1394. /* (*)access
  1395. * Command access changes for OperServ.
  1396. */
  1397. access {
  1398. };
  1399. };
  1400.  
  1401. /* SaslServ configuration.
  1402. *
  1403. * The saslserv {} block contains settings specific to the SaslServ modules.
  1404. *
  1405. * SaslServ provides an authentication agent which is compatible with the
  1406. * SASL over IRC (SASL/IRC) protocol extension.
  1407. */
  1408. saslserv {
  1409. /* (*)nick
  1410. * The nickname we want SaslServ to have.
  1411. */
  1412. nick = "SaslServ";
  1413.  
  1414. /* (*)user
  1415. * The username we want SaslServ to have.
  1416. */
  1417. user = "SaslServ";
  1418.  
  1419. /* (*)host
  1420. * The hostname we want SaslServ to have.
  1421. */
  1422. host = "services.fenixatomic.net";
  1423.  
  1424. /* (*)real
  1425. * The realname (gecos) information we want SaslServ to have.
  1426. */
  1427. real = "SASL Authentication Agent";
  1428. };
  1429.  
  1430. /* MemoServ configuration.
  1431. *
  1432. * The memoserv {} block contains settings specific to the MemoServ modules.
  1433. *
  1434. * MemoServ provides a note-taking service that you can use to send notes
  1435. * to offline users (provided they are registered with Services).
  1436. */
  1437. memoserv {
  1438. /* (*)nick
  1439. * The nickname we want MemoServ to have.
  1440. */
  1441. nick = "MemoServ";
  1442.  
  1443. /* (*)user
  1444. * The username we want MemoServ to have.
  1445. */
  1446. user = "MemoServ";
  1447.  
  1448. /* (*)host
  1449. * The hostname we want MemoServ to have.
  1450. */
  1451. host = "services.fenixatomic.net";
  1452.  
  1453. /* (*)real
  1454. * The realname (gecos) information we want MemoServ to have.
  1455. */
  1456. real = "Memo Services";
  1457.  
  1458. /* (*)aliases
  1459. * Command aliases for MemoServ.
  1460. */
  1461. aliases {
  1462. };
  1463.  
  1464. /* (*)access
  1465. * Command access changes for MemoServ.
  1466. */
  1467. access {
  1468. };
  1469.  
  1470. /* (*)maxmemos
  1471. * What is the maximum amount of memos a user can have in their inbox?
  1472. */
  1473. maxmemos = 30;
  1474. };
  1475.  
  1476. /* GameServ configuration.
  1477. *
  1478. * The gameserv {} block contains settings specific to the GameServ modules.
  1479. *
  1480. * GameServ provides various in-channel commands for games.
  1481. */
  1482. gameserv {
  1483. /* (*)nick
  1484. * The nickname we want GameServ to have.
  1485. */
  1486. nick = "GameServ";
  1487.  
  1488. /* (*)user
  1489. * Sets the username used for this client.
  1490. */
  1491. user = "GameServ";
  1492.  
  1493. /* (*)host
  1494. * The hostname used for this client.
  1495. */
  1496. host = "services.fenixatomic.net";
  1497.  
  1498. /* (*)real
  1499. * The GECOS (real name) of the client.
  1500. */
  1501. real = "Game Services";
  1502.  
  1503. /* (*)aliases
  1504. * Command aliases for GameServ.
  1505. */
  1506. aliases {
  1507. };
  1508.  
  1509. /* (*)access
  1510. * Command access changes for GameServ.
  1511. */
  1512. access {
  1513. };
  1514. };
  1515.  
  1516. /* RPGServ configuration.
  1517. *
  1518. * The rpgserv {} block contains settings specific to the RPGServ modules.
  1519. *
  1520. * RPGServ provides a facility for finding roleplaying channels.
  1521. */
  1522. rpgserv {
  1523. /* (*)nick
  1524. * The nickname we want RPGServ to have.
  1525. */
  1526. nick = "RPGServ";
  1527.  
  1528. /* (*)user
  1529. * Sets the username used for this client.
  1530. */
  1531. user = "RPGServ";
  1532.  
  1533. /* (*)host
  1534. * The hostname used for this client.
  1535. */
  1536. host = "services.fenixatomic.net";
  1537.  
  1538. /* (*)real
  1539. * The GECOS (real name) of the client.
  1540. */
  1541. real = "RPG Finding Services";
  1542.  
  1543. /* (*)aliases
  1544. * Command aliases for RPGServ.
  1545. */
  1546. aliases {
  1547. };
  1548.  
  1549. /* (*)access
  1550. * Command access changes for RPGServ.
  1551. */
  1552. access {
  1553. };
  1554. };
  1555.  
  1556. /* BotServ configuration.
  1557. *
  1558. * The botserv {} block contains settings specific to the BotServ modules.
  1559. *
  1560. * BotServ provides virtual channel bots.
  1561. */
  1562. botserv {
  1563. /* (*)nick
  1564. * The nickname we want BotServ to have.
  1565. */
  1566. nick = "BotServ";
  1567.  
  1568. /* (*)user
  1569. * Sets the username used for this client.
  1570. */
  1571. user = "BotServ";
  1572.  
  1573. /* (*)host
  1574. * The hostname used for this client.
  1575. */
  1576. host = "services.fenixatomic.net";
  1577.  
  1578. /* (*)real
  1579. * The GECOS (real name) of the client.
  1580. */
  1581. real = "Bot Services";
  1582.  
  1583. /* (*)min_users
  1584. * Minimum number of users a channel must have before a Bot is allowed
  1585. * to be assigned to that channel.
  1586. */
  1587. min_users = 0;
  1588. };
  1589.  
  1590. /* GroupServ configuration.
  1591. *
  1592. * The groupserv {} block contains settings specific to the GroupServ modules.
  1593. *
  1594. * GroupServ provides features for managing a collection of channels at once.
  1595. *
  1596. */
  1597. groupserv {
  1598. /* (*)nick
  1599. * The nickname we want GroupServ to have.
  1600. */
  1601. nick = "GroupServ";
  1602.  
  1603. /* (*)user
  1604. * The username we want GroupServ to have.
  1605. */
  1606. user = "GroupServ";
  1607.  
  1608. /* (*)host
  1609. * The hostname we want GroupServ to have.
  1610. */
  1611. host = "services.fenixatomic.net";
  1612.  
  1613. /* (*)real
  1614. * The realname (gecos) information we want GroupServ to have.
  1615. */
  1616. real = "Group Management Services";
  1617.  
  1618. /* (*)aliases
  1619. * Command aliases for GroupServ.
  1620. */
  1621. aliases {
  1622. };
  1623.  
  1624. /* (*)access
  1625. * Command access changes for GroupServ.
  1626. */
  1627. access {
  1628. };
  1629.  
  1630. /* (*)maxgroups
  1631. * Maximum number of groups one username can be founder of.
  1632. */
  1633. maxgroups = 5;
  1634.  
  1635. /* (*)maxgroupacs
  1636. * Maximum number of access entries you may have in a group.
  1637. */
  1638. maxgroupacs = 100;
  1639.  
  1640. /* (*)enable_open_groups
  1641. * Setting this option will allow any group founder to mark
  1642. * their group as "anyone can join".
  1643. */
  1644. enable_open_groups;
  1645.  
  1646. /* (*)join_flags
  1647. * This is the GroupServ flagset that users who JOIN a open
  1648. * group will get upon join. Please check the groupserv/flags
  1649. * helpfile before changing this option. Valid flagsets (for
  1650. * example) would be: "+v" or "+cv". It is not valid to use
  1651. * minus flags (such as "-v") here.
  1652. */
  1653. join_flags = "+";
  1654. };
  1655.  
  1656. /* HostServ configuration.
  1657. *
  1658. * The hostserv {} block contains settings specific to the HostServ modules.
  1659. *
  1660. * HostServ provides advanced virtual host management.
  1661. */
  1662. hostserv {
  1663. /* (*)nick
  1664. * The nickname we want HostServ to have.
  1665. */
  1666. nick = "HostServ";
  1667.  
  1668. /* (*)user
  1669. * Sets the username used for this client.
  1670. */
  1671. user = "HostServ";
  1672.  
  1673. /* (*)host
  1674. * The hostname used for this client.
  1675. */
  1676. host = "services.fenixatomic.net";
  1677.  
  1678. /* (*)real
  1679. * The GECOS (real name) of the client.
  1680. */
  1681. real = "Host Management Services";
  1682.  
  1683. /* (*)request_per_nick
  1684. * Whether the request system should work per nick or per account.
  1685. * The recommended setting is to leave this disabled, so that
  1686. * vhosts work as consistently as possible.
  1687. */
  1688. #request_per_nick;
  1689.  
  1690. /* (*)aliases
  1691. * Command aliases for HostServ.
  1692. */
  1693. aliases {
  1694. "APPROVE" = "ACTIVATE";
  1695. "DENY" = "REJECT";
  1696. };
  1697.  
  1698. /* (*)access
  1699. * Command access changes for HostServ.
  1700. */
  1701. access {
  1702. };
  1703. };
  1704.  
  1705. /* HelpServ configuration
  1706. *
  1707. * The helpserv {} block contains settings specific to the HelpServ modules.
  1708. *
  1709. * HelpServ adds a few different ways for users to request help from network staff.
  1710. */
  1711. helpserv {
  1712. /* (*)nick
  1713. * The nickname we want HelpServ to have.
  1714. */
  1715. nick = "HelpServ";
  1716.  
  1717. /* (*)user
  1718. * The username we want HelpServ to have.
  1719. */
  1720. user = "HelpServ";
  1721.  
  1722. /* (*)host
  1723. * The hostname we want HelpServ to have.
  1724. */
  1725. host = "services.fenixatomic.net";
  1726.  
  1727. /* (*)real
  1728. * The realname (gecos) information we want HelpServ to have.
  1729. */
  1730. real = "Help Services";
  1731. };
  1732.  
  1733. /* StatServ configuration
  1734. *
  1735. * The statserv {} block contains settings specific to the StatServ modules.
  1736. *
  1737. * StatServ adds basic stats and split tracking.
  1738. */
  1739. statserv {
  1740. /* (*)nick
  1741. * The nickname we want StatServ to have.
  1742. */
  1743. nick = "StatServ";
  1744.  
  1745. /* (*)user
  1746. * The username we want StatServ to have.
  1747. */
  1748. user = "StatServ";
  1749.  
  1750. /* (*)host
  1751. * The hostname we want StatServ to have.
  1752. */
  1753. host = "services.fenixatomic.net";
  1754.  
  1755. /* (*)real
  1756. * The realname (gecos) information we want StatServ to have.
  1757. */
  1758. real = "Statistics Services";
  1759. };
  1760.  
  1761. /* ALIS configuration.
  1762. *
  1763. * The alis {} block contains settings specific to the ALIS modules.
  1764. */
  1765. alis {
  1766. /* (*)nick
  1767. * The nickname we want ALIS to have.
  1768. */
  1769. nick = "ALIS";
  1770.  
  1771. /* (*)user
  1772. * The username we want ALIS to have.
  1773. */
  1774. user = "alis";
  1775.  
  1776. /* (*)host
  1777. * The hostname we want ALIS to have.
  1778. */
  1779. host = "services.fenixatomic.net";
  1780.  
  1781. /* (*)real
  1782. * The realname (gecos) information we want ALIS to have.
  1783. */
  1784. real = "Channel Directory";
  1785. };
  1786.  
  1787. /* HTTP server configuration.
  1788. *
  1789. * The httpd {} block contains settings specific to the HTTP server module.
  1790. *
  1791. * The HTTP server in Services is used for serving XMLRPC requests. It can
  1792. * also serve static documents and statistics pages.
  1793. */
  1794. httpd {
  1795. /* host
  1796. * The host that the HTTP server will listen on.
  1797. * Use 0.0.0.0 if you want to listen on all available hosts.
  1798. */
  1799. host = "0.0.0.0";
  1800.  
  1801. /* host (ipv6)
  1802. * If you want, you can have Atheme listen on an IPv6 host too.
  1803. * Use :: if you want to listen on all available IPv6 hosts.
  1804. */
  1805. #host = "::";
  1806.  
  1807. /* www_root
  1808. * The directory that contains the files that should be served by the httpd.
  1809. */
  1810. www_root = "/var/www";
  1811.  
  1812. /* port
  1813. * The port that the HTTP server will listen on.
  1814. */
  1815. port = 8080;
  1816. };
  1817.  
  1818. /* LDAP configuration.
  1819. *
  1820. * The ldap {} block contains settings specific to the LDAP authentication
  1821. * module.
  1822. */
  1823. ldap {
  1824. /* (*)url
  1825. * LDAP URL of the server to use.
  1826. */
  1827. url = "ldap://127.0.0.1";
  1828.  
  1829. /* (*)dnformat
  1830. * Format string to convert an account name to an LDAP DN.
  1831. * Must contain exactly one %s which will be replaced by the account
  1832. * name.
  1833. * Services will attempt a simple bind with this DN and the given
  1834. * password; if this is successful the password is considered correct.
  1835. */
  1836. dnformat = "cn=%s,dc=jillestest,dc=com";
  1837. };
  1838.  
  1839. /******************************************************************************
  1840. * LOGGING SECTION. *
  1841. ******************************************************************************/
  1842.  
  1843. /*
  1844. * logfile{} blocks can be used to set up log files other than the master
  1845. * logfile used by services, which is controlled by serverinfo::loglevel.
  1846. *
  1847. * The various logging categories are:
  1848. * debug, all - meta-keyword for all possible categories
  1849. * trace - meta-keyword for a little bit of info
  1850. * misc - like trace, but with some more miscillaneous info
  1851. * notice - meta-keyword for notice-like information
  1852. * ------------------------------------------------------------------------------
  1853. * error - critical errors
  1854. * info - miscillaneous log notices
  1855. * verbose - A bit more verbose than info, not quite as spammy as debug
  1856. * commands - all command use
  1857. * admin - administrative command use
  1858. * register - account and channel registrations
  1859. * set - changes of account or channel settings
  1860. * request - user requests (currently only vhosts)
  1861. * network - log notices related to network status
  1862. * rawdata - log raw data sent and received by services
  1863. * wallops - <not yet used>
  1864. * denycmd - security model denials (commands, permissions)
  1865. */
  1866.  
  1867. /*
  1868. * This block logs all account and channel registrations and drops,
  1869. * and account and channel setting changes to var/account.log.
  1870. */
  1871. logfile "var/account.log" { register; set; };
  1872.  
  1873. /*
  1874. * This block logs all command use to var/commands.log.
  1875. */
  1876. logfile "var/commands.log" { commands; };
  1877.  
  1878. /*
  1879. * This block logs all security auditing information.
  1880. */
  1881. logfile "var/audit.log" { denycmd; };
  1882.  
  1883. /*
  1884. * You can log to IRC channels, and even split it by category, too.
  1885. * This entry provides roughly the same functionality as the old snoop
  1886. * feature.
  1887. */
  1888. logfile "#services" { error; info; admin; request; register; denycmd; };
  1889.  
  1890. /*
  1891. * This block logs to server notices.
  1892. */
  1893. logfile "!snotices" { error; info; request; denycmd; };
  1894.  
  1895. /******************************************************************************
  1896. * GENERAL PARAMETERS CONFIGURATION SECTION. *
  1897. ******************************************************************************/
  1898.  
  1899. /* The general {} block defines general configuration options. */
  1900. general {
  1901. /* (*)permissive_mode
  1902. * Whether or not security denials should be soft denials instead of
  1903. * hard denials. If security denials are soft denials, then they will
  1904. * only be logged to the denial log.
  1905. */
  1906. #permissive_mode;
  1907.  
  1908. /* (*)helpchan
  1909. * Network help channel. Shown to users when they request
  1910. * help for a command that doesn't exist.
  1911. */
  1912. #helpchan = "#help";
  1913.  
  1914. /* (*)helpurl
  1915. * Network webpage for services help. Shown to users when they
  1916. * request help for a command that doesn't exist.
  1917. */
  1918. #helpurl = "http://www.stack.nl/~jilles/irc/atheme-help/";
  1919.  
  1920. /* (*)silent
  1921. * If you want to prevent services from sending
  1922. * WALLOPS/GLOBOPS about things uncomment this.
  1923. * Not recommended.
  1924. */
  1925. #silent;
  1926.  
  1927. /* (*)verbose_wallops
  1928. * If you want services to send you more information about
  1929. * events that are occuring (in particular AKILLs), uncomment the
  1930. * directive below.
  1931. *
  1932. * WARNING! This may result in large amounts of wallops/globops
  1933. * floods.
  1934. */
  1935. #verbose_wallops;
  1936.  
  1937. /* (*)join_chans
  1938. * Should ChanServ be allowed to join registered channels?
  1939. * This option is useful for the fantasy command set.
  1940. *
  1941. * If enabled, you can tell ChanServ to join via SET GUARD ON.
  1942. *
  1943. * If you use ircu-like ircd (asuka, bircd, undernet), you must
  1944. * leave this enabled, and put guard in default cflags.
  1945. *
  1946. * For ratbox it is recommended to leave it on and put guard in
  1947. * default cflags, in order that ChanServ does not have to join/part
  1948. * to do certain things. On the other hand, enabling this increases
  1949. * potential for bots fighting with ChanServ.
  1950. *
  1951. * Regardless of this option, ChanServ will temporarily join
  1952. * channels which would otherwise be empty if necessary to enforce
  1953. * akick/restricted/close, and to change the TS if changets is
  1954. * enabled.
  1955. */
  1956. join_chans;
  1957.  
  1958. /* (*)leave_chans
  1959. * Do we leave registered channels after everyone else has left?
  1960. * Turning this off serves little purpose, except to mark "official"
  1961. * network channels by keeping them open, and to preserve the
  1962. * topic and +beI lists.
  1963. */
  1964. leave_chans;
  1965.  
  1966. /* secure
  1967. * Do you want to require the use of /msg <service>@<services host>?
  1968. * Turning this on helps protect against spoofers, but is disabled
  1969. * as most networks do not presently use it.
  1970. */
  1971. #secure;
  1972.  
  1973. /* (*)uflags
  1974. * The default flags to set for usernames upon registration.
  1975. * Valid values are: hold, neverop, noop, hidemail, nomemo, emailmemos,
  1976. * enforce, privmsg, private, quietchg and none.
  1977. */
  1978. uflags = { hidemail; };
  1979.  
  1980. /* (*)cflags
  1981. * The default flags to set for channels upon registration.
  1982. * Valid values are: hold, secure, verbose, verbose_ops, keeptopic,
  1983. * topiclock, guard, private, nosync, limitflags and none.
  1984. */
  1985. cflags = { verbose; guard; };
  1986.  
  1987. /* (*)raw
  1988. * Do you want to allow SRAs to use the RAW and INJECT commands?
  1989. * These commands are for debugging. If you don't know how to use them
  1990. * then don't enable them. They are not supported.
  1991. */
  1992. #raw;
  1993.  
  1994. /* (*)flood_msgs
  1995. * Do you want services to detect floods?
  1996. * Set to how many messages before a flood is triggered.
  1997. * Note that some messages that need a lot of processing count
  1998. * as two or four messages.
  1999. * If services receives `flood_msgs' within `flood_time' the user will
  2000. * trigger the flood protection.
  2001. * Setting this to zero disables flood protection.
  2002. */
  2003. flood_msgs = 7;
  2004.  
  2005. /* (*)flood_time
  2006. * Do you want services to detect floods?
  2007. * Set to how long before the counter resets.
  2008. * If services receives `flood_msgs' within `flood_time' the user will
  2009. * trigger the flood protection.
  2010. */
  2011. flood_time = 10;
  2012.  
  2013. /* (*)ratelimit_uses
  2014. * After how many uses of a command will users be throttled.
  2015. * After `ratelimit_uses' of a command within `ratelimit_period', users
  2016. * will not be able to run that ratelimited command until the period is up.
  2017. * Comment this, ratelimit_period below or both options out to disable rate limiting.
  2018. * Currently used in helpserv/helpme, helpserv/ticket, hostserv/request,
  2019. * nickserv/register and chanserv/register.
  2020. */
  2021. ratelimit_uses = 5;
  2022.  
  2023. /* (*)ratelimit_period
  2024. * After how much time (in seconds) will the ratelimit_uses counter reset.
  2025. * After `ratelimit_uses' of a command within `ratelimit_period', users
  2026. * will not be able to run that ratelimited command until the period is up.
  2027. * Comment this, ratelimit_uses above or both options out to disable rate limiting.
  2028. * Currently used in helpserv/helpme, helpserv/ticket, hostserv/request,
  2029. * nickserv/register and chanserv/register.
  2030. */
  2031. ratelimit_period = 60;
  2032.  
  2033. /* (*)kline_time
  2034. * The default expire time for KLINE's in days.
  2035. * Setting this to 0 makes all KLINE's permanent.
  2036. */
  2037. kline_time = 7;
  2038.  
  2039. /* (*)kline_with_ident
  2040. * KLINE user@host instead of *@host.
  2041. * Applies to all automatic KLINE's set by services.
  2042. */
  2043. #kline_with_ident;
  2044.  
  2045. /* (*)kline_verified_ident
  2046. * KLINE *@host if the first character of the ident is ~,
  2047. * irrespective of the value of kline_with_ident.
  2048. * /
  2049. #kline_verified_ident
  2050.  
  2051. /* (*)clone_time
  2052. * This is the default expiry time for CLONE exemptions in minutes.
  2053. * Setting this to 0 makes all CLONE exemptions permanent.
  2054. */
  2055. clone_time = 0;
  2056.  
  2057. /* commit_interval
  2058. * The time between database writes in minutes.
  2059. */
  2060. commit_interval = 5;
  2061.  
  2062. /* (*)default_clone_allowed
  2063. * The limit after which clones will be KILLed or TKLINEd.
  2064. * Used by operserv/clones.
  2065. */
  2066. default_clone_allowed = 5;
  2067.  
  2068. /* (*)default_clone_warn
  2069. * The limit after which clones will be warned that they may not
  2070. * have any more concurrent connections. Should be lower than
  2071. * default_clone_allowed . Used by operserv/clones.
  2072. */
  2073. default_clone_warn = 4;
  2074.  
  2075. /* (*)clone_identified_increase_limit
  2076. * If this option is enabled, the clone limit for a IP/host will
  2077. * be increased by 1 per clone that's identified to services.
  2078. * This has a limit of double the clone limits above.
  2079. */
  2080. clone_identified_increase_limit;
  2081.  
  2082. /* (*)uplink_sendq_limit
  2083. * The maximum amount of data that may be queued to be sent
  2084. * to the uplink, in bytes. This should be enough to contain
  2085. * Atheme's response to the netburst, but smaller than the
  2086. * IRCd's sendq limit for servers.
  2087. */
  2088. uplink_sendq_limit = 1048576;
  2089.  
  2090. /* (*)language
  2091. * Language to use for channel and oper messages and as default
  2092. * for users.
  2093. */
  2094. language = "en";
  2095.  
  2096. /* exempts
  2097. * This block contains a list of user@host masks. Users matching any
  2098. * of these will not be automatically K:lined by services.
  2099. */
  2100. exempts {
  2101. };
  2102.  
  2103. /* allow_taint
  2104. * By enabling this option, Atheme will run in configurations where
  2105. * the upstream will not provide support. By enabling this feature,
  2106. * you void any perceived rights to support.
  2107. */
  2108. #allow_taint;
  2109.  
  2110. /* (*)immune_level
  2111. * This option allows you to customize the operlevel which gets kick
  2112. * immunity privileges.
  2113. *
  2114. * The following flags are available:
  2115. * immune - require whatever ircd usermode is needed for kick
  2116. * immunity (this is the default);
  2117. * admin - require admin privileges for kick immunity
  2118. * ircop - require any ircop privileges for kick immunity (umode +o)
  2119. */
  2120. immune_level = immune;
  2121. };
  2122.  
  2123. /******************************************************************************
  2124. * OPERATOR AND PRIVILEGES CONFIGURATION SECTION. *
  2125. ******************************************************************************/
  2126.  
  2127. /* Operator configuration
  2128. * See the PRIVILEGES document for more information.
  2129. * NOTE: All changes apply immediately upon rehash. You may need
  2130. * to send a signal (killall -HUP atheme-services) to regain control.
  2131. */
  2132. /* (*) Operclasses specify groups of services operator privileges */
  2133. /* The "user" operclass specifies privileges all users get.
  2134. * This may be empty (default) in which case users get no special privileges.
  2135. * If you use the security/cmdperm module, you will need to grant command: privileges
  2136. * to every command that you want users to be able to use.
  2137. */
  2138. operclass "user" { };
  2139.  
  2140. /* The "ircop" operclass specifies privileges all IRCops get.
  2141. * This may be empty in which case IRCops get no privs.
  2142. * At least chan:cmodes, chan:joinstaffonly and general:auspex are suggested.
  2143. */
  2144. operclass "ircop" {
  2145. privs {
  2146. special:ircop;
  2147. };
  2148.  
  2149. privs {
  2150. user:auspex;
  2151. user:admin;
  2152. user:sendpass;
  2153. user:vhost;
  2154. user:mark;
  2155. };
  2156.  
  2157. privs {
  2158. chan:auspex;
  2159. chan:admin;
  2160. chan:cmodes;
  2161. chan:joinstaffonly;
  2162. };
  2163.  
  2164. privs {
  2165. general:auspex;
  2166. general:helper;
  2167. general:viewprivs;
  2168. general:flood;
  2169. };
  2170.  
  2171. privs {
  2172. operserv:omode;
  2173. operserv:akill;
  2174. operserv:jupe;
  2175. operserv:global;
  2176. };
  2177.  
  2178. privs {
  2179. group:auspex;
  2180. group:admin;
  2181. };
  2182. };
  2183.  
  2184. operclass "sra" {
  2185. /* You can inherit privileges from a lower operclass. */
  2186. extends "ircop";
  2187.  
  2188. privs {
  2189. user:hold;
  2190. user:regnolimit;
  2191. };
  2192.  
  2193. privs {
  2194. general:metadata;
  2195. general:admin;
  2196. };
  2197.  
  2198. privs {
  2199. #operserv:massakill;
  2200. #operserv:akill-anymask;
  2201. operserv:noop;
  2202. operserv:grant;
  2203. #operserv:override;
  2204. };
  2205.  
  2206. /* needoper
  2207. * Only grant privileges to IRC users in this oper class if they
  2208. * are opered; other use of privilege (channel succession, XMLRPC,
  2209. * etc.) is unaffected by this.
  2210. */
  2211. needoper;
  2212. };
  2213.  
  2214.  
  2215. /* (*) Operator blocks specify accounts with certain privileges
  2216. * Oper classes must be defined before they are used in operator blocks.
  2217. */
  2218. operator "jilles" {
  2219. /* operclass */
  2220. operclass = "sra";
  2221. /* password
  2222. * Normally, the user needs to identify/log in using the account's
  2223. * password, and may need to be an IRCop (see operclass::needoper
  2224. * above). If you consider this not secure enough, you can
  2225. * specify an additional password here, which the user must enter
  2226. * using the OperServ IDENTIFY command, before the privileges can
  2227. * be used.
  2228. * The password must be encrypted if a crypto module is in use.
  2229. */
  2230. #password = "$1$3gJMO9by$0G60YE6GqmuHVH3AnFPor1";
  2231. };
  2232.  
  2233. /******************************************************************************
  2234. * INCLUDE CONFIGURATION SECTION. *
  2235. ******************************************************************************/
  2236.  
  2237. /* You may also specify other files for inclusion.
  2238. * For example:
  2239. *
  2240. * include "etc/sras.conf";
  2241. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement