View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0002522 | unreal | documentation | public | 2005-05-11 10:52 | 2005-05-11 11:04 |
| Reporter | Ricker | Assigned To | |||
| Priority | normal | Severity | minor | Reproducibility | always |
| Status | closed | Resolution | open | ||
| Product Version | 3.2.3 | ||||
| Summary | 0002522: spamfilter u resolve | ||||
| Description | I set a spamfilter to filter out a few bots... [09:54] F u kill 0 336 0 flooder *!lola*@* and it's filtering more than what it should... [09:55](s) [Spamfilter] [email protected] matches filter '*!lola*@*': [user: '[email protected]:lolek'] [flooder] [10:32](s) [Spamfilter] [email protected] matches filter '*!lola*@*': [user: '[email protected]:kenni'] [flooder] | ||||
| 3rd party modules | |||||
|
|
Spamfilter uses regexes, not the simple * and ? wildcard stuff, so *!lola*@* means: - match 0 or more <everything> (special case, because it's the 1st character) - ! - lol - 0 or more 'a' - 0 or more '@' I suggest you to read up about regex. Unreal ships with some regex documentation, but there are also several nice docs online (just google), and also the Spamfilter section on forums.unrealircd.com might be helpful You probably want something like: ^.*!lola.*@ |