mirror of
https://github.com/unrealircd/unrealircd.git
synced 2026-06-29 07:56:38 +02:00
b930f9a2fc
you have to put 'spamfilter yes;' in every alias block you want to get filtered. This is so you can have for example /MS filtered (due to heavy spam), while keeping /NS and /CS unfiltered. Reported by Homer (#0002496). - The memoserv aliases (/MS and /MEMOSERV) now have spamfiltering enabled by default.
13 lines
411 B
Plaintext
13 lines
411 B
Plaintext
/* Cygnus Aliases */
|
|
|
|
alias nickserv { type services; };
|
|
alias ns { target nickserv; type services; };
|
|
alias chanserv { type services; };
|
|
alias cs { target chanserv; type services; };
|
|
alias memoserv { type services; spamfilter yes; };
|
|
alias ms { target memoserv; type services; spamfilter yes; };
|
|
alias rootserv { type services; };
|
|
alias rs { target rootserv; type services; };
|
|
|
|
include "aliases/aliases.conf";
|