On Mer, Dicembre 14, 2005 18:39, David L. Anselmi wrote: > Willi Mann wrote: > [...] >> The right one should be >> *MultiService = openvpn,ovpn-\S* > > This doesn't work for me, but ovpn-\w* does. > > Running logwatch --debug 5 shows that the S is lowercased in the arguments to multiservice. > > Dave > ovpn-\S* doesn't work here either, debug shows lowercase S, even ovpn-\w* can't do the trick since it doesn't match special characters like "-", one workaround i found is: ovpn-.*[^ \f\n\r\t\v] which isn't really clean but it's doing its work, it should match any character except non-white spaces (same as \S)
Gabriele