Hello!
I’m using asterisk 1.6. From our SIP-trunk provider we got user, password etc.
The problem is that their user includes an ‘@’.
user = xxx@aaa.bbb
secret = yyy
…
The the syntax:
register => user[:secret[]]@host[:port][/extension]
is confused with:
register => fromuser@fromdomain:secret:authuser@host:port/extension
So asterisk tries to register
user = xxx
fromdomain = aaa.bbb
…
I would like somehow send the register string:
register => 'xxx@aaa.bbb’:yyy@host:port/extension
Any ideas?
Thanks
/Dan