or you could split the host and get ident and host/ip and then you can use a string match against the host and what your trying to match.
[split ident@host.name @] would get you ident host.name
[string match -nocase *!*@host.name *!*@other.host.name] would get you 1 or 0 if it matched or not
this could be useful if your trying to match multiple hosts and you won`t need to make more then 1 bind join
thank you dirty, you just made my day, as this is very usefull for other parts of my script. Basicly you helped me to finally understand how to use split correctly. I didnt fully understand it from the help/tut sites, but the way you put it got to me