Redirection of called

Hi;

I want to built n-way-call-conference like this:

I call user 1, when he answers, I redirect him in one conference room
I call user 2 , when he answers, I redirect him in the same conference room
I do the same think with all users.

I don’t know how I can do that?

Some one have any ideas or suggestions

the problem with that way: I must to do a lot of calls if I want to join all users in one conference room.

Can I do one call to all users and redirect them in one conference room?

Thanks a lot

Are you personally calling all these users, or are you going to automate the process?

If you are automating the process then you should look into the .call files

voip-info.org/tiki-index.php … o-dial+out

Or, you could look into the AMI (Asterisk Manager Interface) Orignate command.

voip-info.org/wiki/view/Aste … +Originate

Both of these mechanisms provide a facility to make an outbound call and dump them into a specific conference, which in this case can be a MeetMe or Conference application.

Hi
Thanks for these methods, but I can’t resolve my problme yet.

here my .call files:
##############################################
Channel: SIP/101
MaxRetries: 2
RetryTime: 60
WaitTime: 30
Context: tutorial
Extension: 500
Priority: 1
extensions.conf:
################################################
[tutorial]
{i have here others extensions}

exten => 500,1,Answer()
exten => 500,2,MeetMe(900,Mpa)
###############################################

Asterisk send me this warning all the time:

[Sep 12 16:22:48] WARNING[16359]: pbx_spool.c:237 apply_outgoing: Unknown keyword ’ Channel’ at line 1 of /var/spool/asterisk/outgoing/11.call
[Sep 12 16:22:48] WARNING[16359]: pbx_spool.c:237 apply_outgoing: Unknown keyword ’ MaxRetries’ at line 2 of /var/spool/asterisk/outgoing/11.call
[Sep 12 16:22:48] WARNING[16359]: pbx_spool.c:237 apply_outgoing: Unknown keyword ’ RetryTime’ at line 3 of /var/spool/asterisk/outgoing/11.call
[Sep 12 16:22:48] WARNING[16359]: pbx_spool.c:237 apply_outgoing: Unknown keyword ’ WaitTime’ at line 4 of /var/spool/asterisk/outgoing/11.call
[Sep 12 16:22:48] WARNING[16359]: pbx_spool.c:237 apply_outgoing: Unknown keyword ’ Context’ at line 5 of /var/spool/asterisk/outgoing/11.call
[Sep 12 16:22:48] WARNING[16359]: pbx_spool.c:237 apply_outgoing: Unknown keyword ’ Extension’ at line 6 of /var/spool/asterisk/outgoing/11.call
[Sep 12 16:22:48] WARNING[16359]: pbx_spool.c:237 apply_outgoing: Unknown keyword ’ Priority’ at line 7 of /var/spool/asterisk/outgoing/11.call
[Sep 12 16:22:48] WARNING[16359]: pbx_spool.c:245 apply_outgoing: At least one of app or extension must be specified, along with tech and dest in file /var/spool/asterisk/outgoing/11.call
[Sep 12 16:22:48] WARNING[16359]: pbx_spool.c:413 scan_service: Invalid file contents in /var/spool/asterisk/outgoing/11.call, deleting
[Sep 12 16:22:48] WARNING[16359]: pbx_spool.c:461 scan_thread: Failed to scan service ‘/var/spool/asterisk/outgoing/11.call’

I try only for one phone, but I need to automate that for all users.

Any ideas
Thanks a lo

Hi
Thanks for these methods, but I can’t resolve my problme yet.

here my .call files:
##############################################
Channel: SIP/101
MaxRetries: 2
RetryTime: 60
WaitTime: 30
Context: tutorial
Extension: 500
Priority: 1
extensions.conf:
################################################
[tutorial]
{i have here others extensions}

exten => 500,1,Answer()
exten => 500,2,MeetMe(900,Mpa)
###############################################

Asterisk send me this warning all the time:

[Sep 12 16:22:48] WARNING[16359]: pbx_spool.c:237 apply_outgoing: Unknown keyword ’ Channel’ at line 1 of /var/spool/asterisk/outgoing/11.call
[Sep 12 16:22:48] WARNING[16359]: pbx_spool.c:237 apply_outgoing: Unknown keyword ’ MaxRetries’ at line 2 of /var/spool/asterisk/outgoing/11.call
[Sep 12 16:22:48] WARNING[16359]: pbx_spool.c:237 apply_outgoing: Unknown keyword ’ RetryTime’ at line 3 of /var/spool/asterisk/outgoing/11.call
[Sep 12 16:22:48] WARNING[16359]: pbx_spool.c:237 apply_outgoing: Unknown keyword ’ WaitTime’ at line 4 of /var/spool/asterisk/outgoing/11.call
[Sep 12 16:22:48] WARNING[16359]: pbx_spool.c:237 apply_outgoing: Unknown keyword ’ Context’ at line 5 of /var/spool/asterisk/outgoing/11.call
[Sep 12 16:22:48] WARNING[16359]: pbx_spool.c:237 apply_outgoing: Unknown keyword ’ Extension’ at line 6 of /var/spool/asterisk/outgoing/11.call
[Sep 12 16:22:48] WARNING[16359]: pbx_spool.c:237 apply_outgoing: Unknown keyword ’ Priority’ at line 7 of /var/spool/asterisk/outgoing/11.call
[Sep 12 16:22:48] WARNING[16359]: pbx_spool.c:245 apply_outgoing: At least one of app or extension must be specified, along with tech and dest in file /var/spool/asterisk/outgoing/11.call
[Sep 12 16:22:48] WARNING[16359]: pbx_spool.c:413 scan_service: Invalid file contents in /var/spool/asterisk/outgoing/11.call, deleting
[Sep 12 16:22:48] WARNING[16359]: pbx_spool.c:461 scan_thread: Failed to scan service ‘/var/spool/asterisk/outgoing/11.call’

I try only for one phone, but I need to automate that for all users.

Any ideas
Thanks a lo

Based on the error, it appears you have a space, tab, or other non-printable character before each line.

[Sep 12 16:22:48] WARNING[16359]: pbx_spool.c:237 apply_outgoing: Unknown keyword ’ Channel’ at line 1 of /var/spool/asterisk/outgoing/11.call

See how there is a space between the single quote and the “C” in Channel… that’s your problem.

-G