summaryrefslogtreecommitdiff
path: root/configs
diff options
context:
space:
mode:
authorWalter Doekes <walter+asterisk@wjd.nu>2014-01-21 21:08:00 +0000
committerWalter Doekes <walter+asterisk@wjd.nu>2014-01-21 21:08:00 +0000
commit9a88cc33f8c2a8cd37d3040d3eb11c8b74367dcc (patch)
tree840aaf8a983dce4c94a42a9b9ca03f6371918ea3 /configs
parentb2a682bae29f85d1978f9e28768da791c392330f (diff)
manager: Clarify eventfilter documentation. Textual changes only.
Review: https://reviewboard.asterisk.org/r/3133/ ........ Merged revisions 406079 from http://svn.asterisk.org/svn/asterisk/branches/1.8 ........ Merged revisions 406080 from http://svn.asterisk.org/svn/asterisk/branches/11 ........ Merged revisions 406081 from http://svn.asterisk.org/svn/asterisk/branches/12 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@406082 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'configs')
-rw-r--r--configs/manager.conf.sample13
1 files changed, 7 insertions, 6 deletions
diff --git a/configs/manager.conf.sample b/configs/manager.conf.sample
index 13076ce8d..fd54b81b9 100644
--- a/configs/manager.conf.sample
+++ b/configs/manager.conf.sample
@@ -94,12 +94,13 @@ bindaddr = 0.0.0.0
; user.
;
;eventfilter=Event: Newchannel
-;eventfilter=!Channel: DAHDI*
-; The eventfilter option is used to whitelist or blacklist events per user to be
-; reported with regular expressions and are allowed if both the regex matches
-; and the user has read access set below. Filters are assumed to be for whitelisting
-; unless preceeded by an exclamation point, which marks it as being black.
-; Evaluation of the filters is as follows:
+;eventfilter=!Channel: DAHDI.*
+; The eventfilter option is used to whitelist or blacklist events per user.
+; A filter consists of a (basic/old-style and unanchored) regular expression
+; that is run on the entire event data. If the first character of the filter
+; is an exclamation mark (!), the filter is appended to the blacklist instead
+; of the whitelist. After first checking the read access below, the regular
+; expression filters are processed as follows:
; - If no filters are configured all events are reported as normal.
; - If there are white filters only: implied black all filter processed first,
; then white filters.