I have enabled sip debug and looked up the ID of the call in asterisk/messages. I used grep to filter like this:
- Code: Select all
grep "C-00000075" /var/log/asterisk/messages
I then placed the output in two text files and used Winmerge to compare the calls.
The only differences i noticed:
On the manual dial call the AGI command is:
- Code: Select all
AGI("Local/8600051@default-00000058;1"
And on the auto dial call the AGI command is:
- Code: Select all
AGI("Local/5491805309000@default-0000005a;2"
And then eventually the autodial call fails with:
- Code: Select all
chan_sip.c: Got SIP response 486 "Busy Here" back from <IP redacted>
app_dial.c: SIP/cmcom-0000004b is busy
app_dial.c: Everyone is busy/congested at this time (1:1/0/0)
What could be causing the autodial call to fail here?