[Asterisk-Users] hunt groups

Adam Moffett adam at plexicomm.net
Mon Mar 20 10:34:22 MST 2006


> What I would like to do is…
>
> exten => 1000,1,Dial(sip/1000)(zap/g1,97837560)
>
> exten=> 1000,2,Voicemail(u1000)
>
> Basically a follow me app that rings numerous interfaces and allows me 
> to answer or it to time out and go to vmail. I didn’t include the time 
> out here as I am hoping someone can tell me where that needs to be. I 
> really don’t want to make the caller ring one interface and then the 
> other. Ideally I would be able to press pound after answering so that 
> it didn’t continue to ring the other interface. Most of the apps that 
> I saw do this are basically the same as forwarding the extension, any 
> system can do that and I know asterisk is better than that.
>
Either put the Dial commands in sequence with a short timeout, or put 
multiple arguments to the dial command separated by "&"
Option 1)
exten => 1000,1,Dial(SIP/1000|15)
exten => 1000,2,Dial(Zap/g1,97837560|15)
rings each extension for 15 seconds

option 2)
exten => 1000,1,Dial(SIP/1000&Zip/g1,97837560)
rings both extensions at once....first one to answer is the winner.



More information about the asterisk-users mailing list