On Wed, May 27, 2009 at 3:55 AM, Stefan-Michael Guenther
<asteris...@in-put.de> wrote:
> extensions.conf:
> -----------------
> [incoming]
> exten => 8304479,1,ANSWER()
> exten => 8304479,2,WAIT(10)
> exten => 8304479,3,HANGUP()
>
> exten => 8304478,1,ANSWER()
> exten => 8304478,2,WAIT(10)
> exten => 8304478,3,HANGUP()
>
> Asterisk still doesn't pick up calls for these two numbers.

Is that your entire extensions.conf?

If so, this is part of your problem. If you do the
square-bracket [] style contexts, you need to have jumps to them from
the default context.

So your plan should say

extensions.conf
[default]
exten => 8304479,1,ANSWER()
exten => 8304479,2,WAIT(10)
exten => 8304479,3,HANGUP()

exten => 8304478,1,ANSWER()
exten => 8304478,2,WAIT(10)
exten => 8304478,3,HANGUP()

And you will need to
cli> dialplan reload

to reload extensions.conf

_______________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Reply via email to