Re: [Freeswitch-users] problem when adding more extension

2009-08-12 Thread Seven Du
On Aug 12, 2009, at 2:44 PM, Tzury Bar Yochay wrote: > Hi, > > I wanted to add more extension to freeswitch. > to add extension 1050 with password 1234 I did the following: > > $ cd /usr/local/freeswitch/conf/directory/default > > created 1050.xml having all '1000' strings replaced by '1050' by

Re: [Freeswitch-users] problem when adding more extension

2009-08-12 Thread Tzury Bar Yochay
Thanks allot Kevin. I felt it is about a missing configuration parameter On Wed, Aug 12, 2009 at 1:31 PM, Kevin Golding wrote: > Edit the line below as shown (in the dialplan/default.xml file) > > Original line (about line 206) > > > Replacement line > > > This will allow extensions number 1000

Re: [Freeswitch-users] problem when adding more extension

2009-08-12 Thread Kevin Golding
Edit the line below as shown (in the dialplan/default.xml file) Original line (about line 206) Replacement line This will allow extensions number 1000 to 1099. Kevin Tzury Bar Yochay wrote: > still not working, I mean, I can initiate a call from 1060 to 1000 but > not from 1000 to 1060. > 10

Re: [Freeswitch-users] problem when adding more extension

2009-08-12 Thread Tzury Bar Yochay
still not working, I mean, I can initiate a call from 1060 to 1000 but not from 1000 to 1060. 1060 is just an example. This applies to all new extension I have added (beyond to the default 1000-1019). as you can see below I added them all to This is how the confs look like /usr/local/freeswitch/

Re: [Freeswitch-users] problem when adding more extension

2009-08-12 Thread Kevin Golding
Hello, I've just had the same problem. Solved it by adding the new extension to the default group. i.e. In the /usr/local/freeswitch/conf/directory/default.xml file you need to add with one of the "group" blocks (e.g. after the line Kevin Tzury Bar Yochay wrote: > Hi, > > I wanted to add

[Freeswitch-users] problem when adding more extension

2009-08-11 Thread Tzury Bar Yochay
Hi, I wanted to add more extension to freeswitch. to add extension 1050 with password 1234 I did the following: $ cd /usr/local/freeswitch/conf/directory/default created 1050.xml having all '1000' strings replaced by '1050' by typing $ sed s/1000/1050/g < 1000.xml > 1050.xml rescan and reload t