Updated documentation to PBX version 5.83
Custom filters (INI files) can now also support AND(&) and NOT(!) in the string
Combination of AND and OR is not allowed, but a NOT can always be in front of a wildcard (*)
See examples in the documentation :
The following will show all tables where Stern is in the search criteria
*Stern
The following will show all tables where Stern is NOT the search
criteria
!*Stern
The following will show all tables where Stern AND Gottlieb is in the
search criteria
*Stern&*Gottlieb
The following will show all tables where Stern OR Gottlieb is in the
search criteria
*Stern|*Gottlieb
The following will show all tables where Stern AND Gottlieb are both
NOT in the search criteria
!*Stern&!*Gottlieb
The following will show all tables where Stern OR Gottlieb are NOT
in the search criteria (This would results in all tables, as you search on
NOT Stern OR NOT Gottlieb)
!*Stern|!*Gottlieb