Advertisement
Guest User

Atheme

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