Please, how to write an expression to allow posts in all " *.name "
groups and only these?
Thank you.
Eduardo.
--
Internetado
...
Rede-LUSO: news://rede-luso.dtdns.net - Brasil
| Arte, Cultura e Lusofonia |
Where? In the score filter? In the user account configuration? Somewhere
else?
Wolfgang
--
In the user account configuration
Sorry,
\.name$ !.*
The expressions are regex, i. e. the dot must be masked ('\.'; an
unmasked dot means 'any character'). The '$' reperesents the end of
string. As regex allway asks for being part of, not for being equal, you
don't need to specify the prior part of the group name alt all.
And finally, the second expression is simply the negation of 'any
charcter', i. e. posting to any other group (except to those, which did
match to one of the previous expressions) will not be allowed.
Wolfgang
--
Thank you...