Asterisk autodial some external numbers when joining conference











up vote
0
down vote

favorite












I'm trying to setup an emergency service for our company, and this is the need:



A person that is involved into an emergency situation have to dial a number with his mobile phone and automatically all ermergency squad's people phones will ring and all must be placed in conference call automatically.



I'm near to the solution but I have some difficult with call files , I'm also not sure this is the right way but this is what I made



I've created a conference ( extn 419 ) and also I've created one call file like this



Channel: SIP/123456789@from-internal
MaxRetries: 2
RetryTime: 60
WaitTime: 30
Context: ext-meetme
Extension: 419
Priority: 1



where 123456789 is one of the emergency squad number and 419 is the conference room number



this is working but I have to manually put the call file in the outgoing directory to generate the call
I would like to have the call originate when someone call the 419 extension.



Could someone help me please?



Thanks in advance










share|improve this question


























    up vote
    0
    down vote

    favorite












    I'm trying to setup an emergency service for our company, and this is the need:



    A person that is involved into an emergency situation have to dial a number with his mobile phone and automatically all ermergency squad's people phones will ring and all must be placed in conference call automatically.



    I'm near to the solution but I have some difficult with call files , I'm also not sure this is the right way but this is what I made



    I've created a conference ( extn 419 ) and also I've created one call file like this



    Channel: SIP/123456789@from-internal
    MaxRetries: 2
    RetryTime: 60
    WaitTime: 30
    Context: ext-meetme
    Extension: 419
    Priority: 1



    where 123456789 is one of the emergency squad number and 419 is the conference room number



    this is working but I have to manually put the call file in the outgoing directory to generate the call
    I would like to have the call originate when someone call the 419 extension.



    Could someone help me please?



    Thanks in advance










    share|improve this question
























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I'm trying to setup an emergency service for our company, and this is the need:



      A person that is involved into an emergency situation have to dial a number with his mobile phone and automatically all ermergency squad's people phones will ring and all must be placed in conference call automatically.



      I'm near to the solution but I have some difficult with call files , I'm also not sure this is the right way but this is what I made



      I've created a conference ( extn 419 ) and also I've created one call file like this



      Channel: SIP/123456789@from-internal
      MaxRetries: 2
      RetryTime: 60
      WaitTime: 30
      Context: ext-meetme
      Extension: 419
      Priority: 1



      where 123456789 is one of the emergency squad number and 419 is the conference room number



      this is working but I have to manually put the call file in the outgoing directory to generate the call
      I would like to have the call originate when someone call the 419 extension.



      Could someone help me please?



      Thanks in advance










      share|improve this question













      I'm trying to setup an emergency service for our company, and this is the need:



      A person that is involved into an emergency situation have to dial a number with his mobile phone and automatically all ermergency squad's people phones will ring and all must be placed in conference call automatically.



      I'm near to the solution but I have some difficult with call files , I'm also not sure this is the right way but this is what I made



      I've created a conference ( extn 419 ) and also I've created one call file like this



      Channel: SIP/123456789@from-internal
      MaxRetries: 2
      RetryTime: 60
      WaitTime: 30
      Context: ext-meetme
      Extension: 419
      Priority: 1



      where 123456789 is one of the emergency squad number and 419 is the conference room number



      this is working but I have to manually put the call file in the outgoing directory to generate the call
      I would like to have the call originate when someone call the 419 extension.



      Could someone help me please?



      Thanks in advance







      asterisk






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jul 20 '16 at 15:43









      Umberto Bernardi

      1




      1
























          1 Answer
          1






          active

          oldest

          votes

















          up vote
          0
          down vote













          For your approach you need to trigger AGI script when somebody calls emergency number. And then this script can create call files and copy them to spool directory.



          http://www.voip-info.org/wiki/view/Asterisk+cmd+AGI



          If I was building similar solution, then I will probably will do all logic inside AGI script even triggering a call with originate command instead of call files.



          My dialpaln:



          [dialplan-for-emergency]
          ; 123456 - emergency number
          exten => 123456,1,Answer()
          exten => 123456,n,AGI(myscript.pl)
          exten => 123456,n,Hangup()

          myscript.pl # in pseudo code

          create conference
          create a calls to all other participants into conference
          connect callee into conference





          share|improve this answer





















            Your Answer






            StackExchange.ifUsing("editor", function () {
            StackExchange.using("externalEditor", function () {
            StackExchange.using("snippets", function () {
            StackExchange.snippets.init();
            });
            });
            }, "code-snippets");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "1"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f38485037%2fasterisk-autodial-some-external-numbers-when-joining-conference%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            0
            down vote













            For your approach you need to trigger AGI script when somebody calls emergency number. And then this script can create call files and copy them to spool directory.



            http://www.voip-info.org/wiki/view/Asterisk+cmd+AGI



            If I was building similar solution, then I will probably will do all logic inside AGI script even triggering a call with originate command instead of call files.



            My dialpaln:



            [dialplan-for-emergency]
            ; 123456 - emergency number
            exten => 123456,1,Answer()
            exten => 123456,n,AGI(myscript.pl)
            exten => 123456,n,Hangup()

            myscript.pl # in pseudo code

            create conference
            create a calls to all other participants into conference
            connect callee into conference





            share|improve this answer

























              up vote
              0
              down vote













              For your approach you need to trigger AGI script when somebody calls emergency number. And then this script can create call files and copy them to spool directory.



              http://www.voip-info.org/wiki/view/Asterisk+cmd+AGI



              If I was building similar solution, then I will probably will do all logic inside AGI script even triggering a call with originate command instead of call files.



              My dialpaln:



              [dialplan-for-emergency]
              ; 123456 - emergency number
              exten => 123456,1,Answer()
              exten => 123456,n,AGI(myscript.pl)
              exten => 123456,n,Hangup()

              myscript.pl # in pseudo code

              create conference
              create a calls to all other participants into conference
              connect callee into conference





              share|improve this answer























                up vote
                0
                down vote










                up vote
                0
                down vote









                For your approach you need to trigger AGI script when somebody calls emergency number. And then this script can create call files and copy them to spool directory.



                http://www.voip-info.org/wiki/view/Asterisk+cmd+AGI



                If I was building similar solution, then I will probably will do all logic inside AGI script even triggering a call with originate command instead of call files.



                My dialpaln:



                [dialplan-for-emergency]
                ; 123456 - emergency number
                exten => 123456,1,Answer()
                exten => 123456,n,AGI(myscript.pl)
                exten => 123456,n,Hangup()

                myscript.pl # in pseudo code

                create conference
                create a calls to all other participants into conference
                connect callee into conference





                share|improve this answer












                For your approach you need to trigger AGI script when somebody calls emergency number. And then this script can create call files and copy them to spool directory.



                http://www.voip-info.org/wiki/view/Asterisk+cmd+AGI



                If I was building similar solution, then I will probably will do all logic inside AGI script even triggering a call with originate command instead of call files.



                My dialpaln:



                [dialplan-for-emergency]
                ; 123456 - emergency number
                exten => 123456,1,Answer()
                exten => 123456,n,AGI(myscript.pl)
                exten => 123456,n,Hangup()

                myscript.pl # in pseudo code

                create conference
                create a calls to all other participants into conference
                connect callee into conference






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Jul 20 '16 at 17:04









                os11k

                562518




                562518






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.





                    Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                    Please pay close attention to the following guidance:


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f38485037%2fasterisk-autodial-some-external-numbers-when-joining-conference%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Futebolista

                    Lallio

                    Jornalista