Re: [asterisk-users] invite to conference by a call file

2018-03-22 Thread Frank Vanoni

Maybe something like a local web page where your secretary can enter
the list of phone numbers to call and a script that generates a call
file and moves it to the Asterisk spool folder.

But that's not an Asterisk issue. It's more a programmer's issue. :-) 


On Thu, 2018-03-22 at 16:06 +0200, Atux Atux wrote:

> that's the problem. it is never the same people
> I need the office secretary to edit a file (call file)
> and place it in a particular folder in their windows PCs. this folder
> is the outgoing folder of LINUX shared through samba in LAN. i need
> to make it as easy as possible, please.

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

Check out the new Asterisk community forum at: https://community.asterisk.org/

New to Asterisk? Start here:
  https://wiki.asterisk.org/wiki/display/AST/Getting+Started

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


Re: [asterisk-users] invite to conference by a call file

2018-03-22 Thread Atux Atux
that's the problem. it is never the same people

On Thu, Mar 22, 2018 at 3:15 PM, Frank Vanoni 
wrote:

> If the participants are always the same people, there is no need to
> change the dialplan. Just tells the office secretary "Please, place a
> conference call.". with the "Page" application, she picks up the phone,
> dials a predefined number and all the participants are called at once.
> Easy peasy. :-)
>
>
> On Thu, 2018-03-22 at 14:21 +0200, Atux Atux wrote:
> > All the aforementioned techniques need change everytime on the
> > dialplan. I need the office secretary to edit a file (call file) and
> > place it in a particular folder in their windows PCs. this folder is
> > the outgoing folder of LINUX shared through samba in LAN. i need to
> > make it as easy as possible, please.
> >
> > On Tue, Mar 20, 2018 at 5:41 PM, Frank Vanoni  > com> wrote:
> > > Here I'm using the "Page" application to make a conference call "on
> > > the fly".
> > >
> > >
> > >
> > > [office]
> > >
> > > exten => ,1,Dial(SIP/desk2,150)
> > >same => n,Hangup()
> > >
> > > exten => ,1,Dial(SIP/desk3,150)
> > >same => n,Hangup()
> > >
> > > exten => ,1,Dial(SIP/desk4,150)
> > >same => n,Hangup()
> > >
> > > exten => ,1,Dial(SIP/desk5,150)
> > >same => n,Hangup()
> > >
> > > exten => ,1,Dial(SIP/desk6,150)
> > >same => n,Hangup()
> > >
> > > ; Conference call
> > > exten => ,1,Answer
> > > exten => ,n,Page(Local/@office/@office/
> > > @office/@office/@office,d)
> > > same => n,Hangup()
> > >
> > > --
> > > ___
> > > __
> > > -- Bandwidth and Colocation Provided by http://www.api-digital.com
> > > --
> > >
> > > Check out the new Asterisk community forum at: https://community.as
> > > terisk.org/
> > >
> > > New to Asterisk? Start here:
> > >   https://wiki.asterisk.org/wiki/display/AST/Getting+Started
> > >
> > > asterisk-users mailing list
> > > To UNSUBSCRIBE or update options visit:
> > >http://lists.digium.com/mailman/listinfo/asterisk-users
> > --
> > _
> > -- Bandwidth and Colocation Provided by http://www.api-digital.com --
> >
> > Check out the new Asterisk community forum at: https://community.aste
> > risk.org/
> >
> > New to Asterisk? Start here:
> >   https://wiki.asterisk.org/wiki/display/AST/Getting+Started
> >
> > asterisk-users mailing list
> > To UNSUBSCRIBE or update options visit:
> >http://lists.digium.com/mailman/listinfo/asterisk-users
>
> --
> _
> -- Bandwidth and Colocation Provided by http://www.api-digital.com --
>
> Check out the new Asterisk community forum at: https://community.asterisk.
> org/
>
> New to Asterisk? Start here:
>   https://wiki.asterisk.org/wiki/display/AST/Getting+Started
>
> asterisk-users mailing list
> To UNSUBSCRIBE or update options visit:
>http://lists.digium.com/mailman/listinfo/asterisk-users
>
-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

Check out the new Asterisk community forum at: https://community.asterisk.org/

New to Asterisk? Start here:
  https://wiki.asterisk.org/wiki/display/AST/Getting+Started

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

Re: [asterisk-users] invite to conference by a call file

2018-03-22 Thread Frank Vanoni
If the participants are always the same people, there is no need to
change the dialplan. Just tells the office secretary "Please, place a
conference call.". with the "Page" application, she picks up the phone,
dials a predefined number and all the participants are called at once.
Easy peasy. :-)


On Thu, 2018-03-22 at 14:21 +0200, Atux Atux wrote:
> All the aforementioned techniques need change everytime on the
> dialplan. I need the office secretary to edit a file (call file) and
> place it in a particular folder in their windows PCs. this folder is
> the outgoing folder of LINUX shared through samba in LAN. i need to
> make it as easy as possible, please.
> 
> On Tue, Mar 20, 2018 at 5:41 PM, Frank Vanoni  com> wrote:
> > Here I'm using the "Page" application to make a conference call "on
> > the fly".
> > 
> > 
> > 
> > [office]
> > 
> > exten => ,1,Dial(SIP/desk2,150)
> >    same => n,Hangup()
> > 
> > exten => ,1,Dial(SIP/desk3,150)
> >    same => n,Hangup()
> > 
> > exten => ,1,Dial(SIP/desk4,150)
> >    same => n,Hangup()
> > 
> > exten => ,1,Dial(SIP/desk5,150)
> >    same => n,Hangup()
> > 
> > exten => ,1,Dial(SIP/desk6,150)
> >    same => n,Hangup()
> > 
> > ; Conference call
> > exten => ,1,Answer
> > exten => ,n,Page(Local/@office/@office/
> > @office/@office/@office,d)
> > same => n,Hangup()
> > 
> > --
> > ___
> > __
> > -- Bandwidth and Colocation Provided by http://www.api-digital.com
> > --
> > 
> > Check out the new Asterisk community forum at: https://community.as
> > terisk.org/
> > 
> > New to Asterisk? Start here:
> >       https://wiki.asterisk.org/wiki/display/AST/Getting+Started
> > 
> > asterisk-users mailing list
> > To UNSUBSCRIBE or update options visit:
> >    http://lists.digium.com/mailman/listinfo/asterisk-users
> -- 
> _
> -- Bandwidth and Colocation Provided by http://www.api-digital.com --
> 
> Check out the new Asterisk community forum at: https://community.aste
> risk.org/
> 
> New to Asterisk? Start here:
>   https://wiki.asterisk.org/wiki/display/AST/Getting+Started
> 
> asterisk-users mailing list
> To UNSUBSCRIBE or update options visit:
>    http://lists.digium.com/mailman/listinfo/asterisk-users

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

Check out the new Asterisk community forum at: https://community.asterisk.org/

New to Asterisk? Start here:
  https://wiki.asterisk.org/wiki/display/AST/Getting+Started

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


Re: [asterisk-users] invite to conference by a call file

2018-03-22 Thread Atux Atux
All the aforementioned techniques need change everytime on the dialplan. I
need the office secretary to edit a file (call file) and place it in a
particular folder in their windows PCs. this folder is the outgoing folder
of LINUX shared through samba in LAN. i need to make it as easy as
possible, please.

On Tue, Mar 20, 2018 at 5:41 PM, Frank Vanoni 
wrote:

> Here I'm using the "Page" application to make a conference call "on the
> fly".
>
>
>
> [office]
>
> exten => ,1,Dial(SIP/desk2,150)
>same => n,Hangup()
>
> exten => ,1,Dial(SIP/desk3,150)
>same => n,Hangup()
>
> exten => ,1,Dial(SIP/desk4,150)
>same => n,Hangup()
>
> exten => ,1,Dial(SIP/desk5,150)
>same => n,Hangup()
>
> exten => ,1,Dial(SIP/desk6,150)
>same => n,Hangup()
>
> ; Conference call
> exten => ,1,Answer
> exten => ,n,Page(Local/@office/@office/@office
> /@office/@office,d)
> same => n,Hangup()
>
> --
> _
> -- Bandwidth and Colocation Provided by http://www.api-digital.com --
>
> Check out the new Asterisk community forum at: https://community.asterisk.
> org/
>
> New to Asterisk? Start here:
>   https://wiki.asterisk.org/wiki/display/AST/Getting+Started
>
> asterisk-users mailing list
> To UNSUBSCRIBE or update options visit:
>http://lists.digium.com/mailman/listinfo/asterisk-users
>
-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

Check out the new Asterisk community forum at: https://community.asterisk.org/

New to Asterisk? Start here:
  https://wiki.asterisk.org/wiki/display/AST/Getting+Started

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

Re: [asterisk-users] invite to conference by a call file

2018-03-20 Thread Frank Vanoni
Here I'm using the "Page" application to make a conference call "on the
fly".



[office]

exten => ,1,Dial(SIP/desk2,150)
   same => n,Hangup()

exten => ,1,Dial(SIP/desk3,150)
   same => n,Hangup()

exten => ,1,Dial(SIP/desk4,150)
   same => n,Hangup()

exten => ,1,Dial(SIP/desk5,150)
   same => n,Hangup()

exten => ,1,Dial(SIP/desk6,150)
   same => n,Hangup()

; Conference call
exten => ,1,Answer
exten => ,n,Page(Local/@office/@office/@off
ice/@office/@office,d)
same => n,Hangup()-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

Check out the new Asterisk community forum at: https://community.asterisk.org/

New to Asterisk? Start here:
  https://wiki.asterisk.org/wiki/display/AST/Getting+Started

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

Re: [asterisk-users] invite to conference by a call file

2018-03-20 Thread Dovid Bender
You would make the call file the same way you are now. 100 was the conf
room ID. Have a look at the documentation how to do it. Also take a look at
the default settings in confbridge.conf

voice1*CLI> core show application ConfBridge

  -= Info about application 'ConfBridge' =-

[Synopsis]
Conference bridge application.

[Description]
Enters the user into a specified conference bridge.  The user can exit the
conference by hangup or DTMF menu option.
This application sets the following channel variable upon completion:
${CONFBRIDGE_RESULT}:
FAILED:The channel encountered an error and could not enter the
conference.
HANGUP:The channel exited the conference by hanging up.
KICKED:The channel was kicked from the conference.
ENDMARKED:The channel left the conference as a result of the last marked
user leaving.
DTMF:The channel pressed a DTMF sequence to exit the conference.
TIMEOUT:The channel reached its configured timeout.

[Syntax]
ConfBridge(conference[,bridge_profile[,user_profile[,menu]]])

[Arguments]
conference
Name of the conference bridge.  You are not limited to just numbers.
bridge_profile
The bridge profile name from confbridge.conf.  When left blank, a
dynamically built bridge profile created by the CONFBRIDGE dialplan
function is searched for on the channel and used.  If no dynamic
profile is
present, the 'default_bridge' profile found in confbridge.conf is used.
It is important to note that while user profiles may be unique for each
participant, mixing bridge profiles on a single conference is _NOT_
recommended and will produce undefined results.
user_profile
The user profile name from confbridge.conf.  When left blank, a
dynamically
built user profile created by the CONFBRIDGE dialplan function is
searched
for on the channel and used.  If no dynamic profile is present, the
'default_user' profile found in confbridge.conf is used.
menu
The name of the DTMF menu in confbridge.conf to be applied to this
channel.
 When left blank, a dynamically built menu profile created by the
CONFBRIDGE dialplan function is searched for on the channel and used.
If no
dynamic profile is present, the 'default_menu' profile found in
confbridge.conf is used.

[See Also]
ConfBridge(), CONFBRIDGE, CONFBRIDGE_INFO

On Tue, Mar 20, 2018 at 10:44 AM, Atux Atux  wrote:

> thanks a lot for the reply.
> [call-file-test]
> Exten => 10,1,Answer
>  same => ConfBridge(100)
>
>
> i assume 100 is the conference room, correct?
> where do i write the SIP numbers to invite(internal or external)?
> what about the PIN?
>
>
> On Tue, Mar 20, 2018 at 4:41 PM, Dovid Bender  wrote:
>
>> Atux,
>>
>> This should work:
>> [call-file-test]
>> Exten => 10,1,Answer
>>  same => ConfBridge(100)
>>
>> On Tue, Mar 20, 2018 at 10:34 AM, Atux Atux  wrote:
>>
>>> Hi. in my system i have a conference room where someone can call it eg
>>> 698 dial the PIN eg 1234 and enter the room as a user. The admin enters in
>>> through a different number and PIN.  I would like to have a call file and
>>> call all participants eg 610-619 at certain time of the day and give them
>>> access to the conference.
>>> During my try i managed to create a call file where it calls the a SIP
>>> phone and it can hear the monkeys (just for test).
>>> here is the call file
>>> Channel: SIP/601
>>> MaxRetries: 2
>>> RetryTime: 60
>>> WaitTime: 30
>>> Context: call-file-test
>>> Extension: 10
>>>
>>>
>>>
>>> and here is the entry in extensions.conf
>>>
>>> [call-file-test]
>>> exten => 10,1,Answer()
>>> exten => 10,n,Wait(1)
>>> exten => 10,n,Playback(tt-monkeys)
>>> exten => 10,n,Wait(1)
>>> exten => 10,n,Hangup()
>>>
>>>
>>> i did not manage to make it call more SIP phones and invite them to the
>>> conference
>>>
>>> Any ideas please?
>>>
>>> --
>>> _
>>> -- Bandwidth and Colocation Provided by http://www.api-digital.com --
>>>
>>> Check out the new Asterisk community forum at:
>>> https://community.asterisk.org/
>>>
>>> New to Asterisk? Start here:
>>>   https://wiki.asterisk.org/wiki/display/AST/Getting+Started
>>>
>>> asterisk-users mailing list
>>> To UNSUBSCRIBE or update options visit:
>>>http://lists.digium.com/mailman/listinfo/asterisk-users
>>>
>>
>>
>> --
>> _
>> -- Bandwidth and Colocation Provided by http://www.api-digital.com --
>>
>> Check out the new Asterisk community forum at:
>> https://community.asterisk.org/
>>
>> New to Asterisk? Start here:
>>   https://wiki.asterisk.org/wiki/display/AST/Getting+Started
>>
>> asterisk-users mailing list
>> To UNSUBSCRIBE or update options visit:
>>http://lists.digium.com/mailman/listinfo/asterisk-users
>>
>
>
> --
> _
> -- Bandwidth and Colocation 

Re: [asterisk-users] invite to conference by a call file

2018-03-20 Thread Atux Atux
thanks a lot for the reply.
[call-file-test]
Exten => 10,1,Answer
 same => ConfBridge(100)


i assume 100 is the conference room, correct?
where do i write the SIP numbers to invite(internal or external)?
what about the PIN?


On Tue, Mar 20, 2018 at 4:41 PM, Dovid Bender  wrote:

> Atux,
>
> This should work:
> [call-file-test]
> Exten => 10,1,Answer
>  same => ConfBridge(100)
>
> On Tue, Mar 20, 2018 at 10:34 AM, Atux Atux  wrote:
>
>> Hi. in my system i have a conference room where someone can call it eg
>> 698 dial the PIN eg 1234 and enter the room as a user. The admin enters in
>> through a different number and PIN.  I would like to have a call file and
>> call all participants eg 610-619 at certain time of the day and give them
>> access to the conference.
>> During my try i managed to create a call file where it calls the a SIP
>> phone and it can hear the monkeys (just for test).
>> here is the call file
>> Channel: SIP/601
>> MaxRetries: 2
>> RetryTime: 60
>> WaitTime: 30
>> Context: call-file-test
>> Extension: 10
>>
>>
>>
>> and here is the entry in extensions.conf
>>
>> [call-file-test]
>> exten => 10,1,Answer()
>> exten => 10,n,Wait(1)
>> exten => 10,n,Playback(tt-monkeys)
>> exten => 10,n,Wait(1)
>> exten => 10,n,Hangup()
>>
>>
>> i did not manage to make it call more SIP phones and invite them to the
>> conference
>>
>> Any ideas please?
>>
>> --
>> _
>> -- Bandwidth and Colocation Provided by http://www.api-digital.com --
>>
>> Check out the new Asterisk community forum at:
>> https://community.asterisk.org/
>>
>> New to Asterisk? Start here:
>>   https://wiki.asterisk.org/wiki/display/AST/Getting+Started
>>
>> asterisk-users mailing list
>> To UNSUBSCRIBE or update options visit:
>>http://lists.digium.com/mailman/listinfo/asterisk-users
>>
>
>
> --
> _
> -- Bandwidth and Colocation Provided by http://www.api-digital.com --
>
> Check out the new Asterisk community forum at: https://community.asterisk.
> org/
>
> New to Asterisk? Start here:
>   https://wiki.asterisk.org/wiki/display/AST/Getting+Started
>
> asterisk-users mailing list
> To UNSUBSCRIBE or update options visit:
>http://lists.digium.com/mailman/listinfo/asterisk-users
>
-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

Check out the new Asterisk community forum at: https://community.asterisk.org/

New to Asterisk? Start here:
  https://wiki.asterisk.org/wiki/display/AST/Getting+Started

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

Re: [asterisk-users] invite to conference by a call file

2018-03-20 Thread Dovid Bender
Atux,

This should work:
[call-file-test]
Exten => 10,1,Answer
 same => ConfBridge(100)

On Tue, Mar 20, 2018 at 10:34 AM, Atux Atux  wrote:

> Hi. in my system i have a conference room where someone can call it eg 698
> dial the PIN eg 1234 and enter the room as a user. The admin enters in
> through a different number and PIN.  I would like to have a call file and
> call all participants eg 610-619 at certain time of the day and give them
> access to the conference.
> During my try i managed to create a call file where it calls the a SIP
> phone and it can hear the monkeys (just for test).
> here is the call file
> Channel: SIP/601
> MaxRetries: 2
> RetryTime: 60
> WaitTime: 30
> Context: call-file-test
> Extension: 10
>
>
>
> and here is the entry in extensions.conf
>
> [call-file-test]
> exten => 10,1,Answer()
> exten => 10,n,Wait(1)
> exten => 10,n,Playback(tt-monkeys)
> exten => 10,n,Wait(1)
> exten => 10,n,Hangup()
>
>
> i did not manage to make it call more SIP phones and invite them to the
> conference
>
> Any ideas please?
>
> --
> _
> -- Bandwidth and Colocation Provided by http://www.api-digital.com --
>
> Check out the new Asterisk community forum at: https://community.asterisk.
> org/
>
> New to Asterisk? Start here:
>   https://wiki.asterisk.org/wiki/display/AST/Getting+Started
>
> asterisk-users mailing list
> To UNSUBSCRIBE or update options visit:
>http://lists.digium.com/mailman/listinfo/asterisk-users
>
-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

Check out the new Asterisk community forum at: https://community.asterisk.org/

New to Asterisk? Start here:
  https://wiki.asterisk.org/wiki/display/AST/Getting+Started

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

[asterisk-users] invite to conference by a call file

2018-03-20 Thread Atux Atux
Hi. in my system i have a conference room where someone can call it eg 698
dial the PIN eg 1234 and enter the room as a user. The admin enters in
through a different number and PIN.  I would like to have a call file and
call all participants eg 610-619 at certain time of the day and give them
access to the conference.
During my try i managed to create a call file where it calls the a SIP
phone and it can hear the monkeys (just for test).
here is the call file
Channel: SIP/601
MaxRetries: 2
RetryTime: 60
WaitTime: 30
Context: call-file-test
Extension: 10



and here is the entry in extensions.conf

[call-file-test]
exten => 10,1,Answer()
exten => 10,n,Wait(1)
exten => 10,n,Playback(tt-monkeys)
exten => 10,n,Wait(1)
exten => 10,n,Hangup()


i did not manage to make it call more SIP phones and invite them to the
conference

Any ideas please?
-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

Check out the new Asterisk community forum at: https://community.asterisk.org/

New to Asterisk? Start here:
  https://wiki.asterisk.org/wiki/display/AST/Getting+Started

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