Just a note on mailing list etiquette; don't reply to an email, erase the subject line and body text, and start a new thread (conversation) -- I imagine you are using Microsoft Outlook; it has no concept of mail threads so you don't see anything wrong, but it messes up the message threading for everyone else on the list. If you want to start a new email to the list, just click on the "[email protected]" and start typing.
On Thursday 10 August 2006 08:50, James Hardy wrote: > I have seven incoming DIDs via sip trunking, and they should all go to the > same number; i.e, they should all be answered by the same autoattendant. > Kind of like the traditional roll-over effect. What would be the cleanest > way to implement this? The easiest way to do this is to have your SIP peer come into a context with all the DIDs: [myprovider] type=friend context=from_provider and in extensions.conf: [from_provider] exten => 5195551212,1,Goto(my_ivr,s,1) exten => 5195551213,1,Goto(my_ivr,s,1) exten => 5195551214,1,Goto(my_ivr,s,1) [my_ivr] exten => s,1,Answer exten => s,n,Playback(welcome) exten => s,n,Playback(press-one-for-foo) exten => s,n,Playback(press-two-for-bar) ... You get the idea. By doing it this way you can *easily* split off a number to do something else without mucking around too much in the dialplan. -A.
