On (05.11.04 11:51), Bogdan-Andrei IANCU wrote: > if (uri=~"sip:+") { You really want to escape the + sign in the regex (the line above matches anything). if (uri=~"sip:\+") { cheers axelm