Re: [asterisk-users] Originate with label?

2022-08-29 Thread Antony Stone
On Monday 29 August 2022 at 17:00:23, Mark Murawski wrote: > On 8/29/22 09:30, Antony Stone wrote: > > It is, although there are ways I think it can be improved - I'm wondering > > how best to go about proposing these. > > > > The most obvious for now are: > > - please can "a=1;" be converted

[asterisk-users] Forward incoming call to recipients.

2022-08-29 Thread Ken D'Ambrosio
Hey, all. I'd like to forward an incoming call (e.g., to an on-call rotation number), out to multiple recipients, BUT only hand the call over to whoever answers _and acknowledges_ (e.g., "Press any key..."), 'cause I don't want it just going to their mailbox. I've thought of a number of ways

Re: [asterisk-users] Originate with label?

2022-08-29 Thread Mark Murawski
On 8/29/22 14:00, aster...@phreaknet.org wrote: This is a mockup of what the new-style if/else processor would output     26. NoOp(AEL IF("\${DIALSTATUS}" == "BUSY") -- extensions.ael:1405)     27. GotoIf($["${DIALSTATUS}" == "BUSY"]?28:30)    

Re: [asterisk-users] Originate with label?

2022-08-29 Thread Mark Murawski
On 8/29/22 09:30, Antony Stone wrote: It is, although there are ways I think it can be improved - I'm wondering how best to go about proposing these. The most obvious for now are: - please can "a=1;" be converted to use Set() instead of MSet() (especially since MSet is officially

Re: [asterisk-users] Originate with label?

2022-08-29 Thread Antony Stone
On Monday 29 August 2022 at 16:19:17, Mark Murawski wrote: > On 8/29/22 10:15, Antony Stone wrote: > >> But! What specific reason do you have for wanting Set() instead of > >> MSet() for all assignments that can't be otherwise just written as an > >> in-line Set() instead? > > > > I *am*

Re: [asterisk-users] Originate with label?

2022-08-29 Thread Mark Murawski
On 8/29/22 10:15, Antony Stone wrote: But! What specific reason do you have for wanting Set() instead of MSet() for all assignments that can't be otherwise just written as an in-line Set() instead? I *am* currently writing inline Set() everywhere, but surely the syntax "a=1;" instead of

Re: [asterisk-users] Originate with label?

2022-08-29 Thread Mark Murawski
On 8/29/22 09:53, Antony Stone wrote: On Monday 29 August 2022 at 15:35:09, Joshua C. Colp wrote: MSet is not deprecated. https://wiki.asterisk.org/wiki/display/AST/Asterisk+13+Application_MSet includes the sentence "MSet behaves in a similar fashion to the way Set worked in 1.2/1.4 and is

Re: [asterisk-users] Originate with label?

2022-08-29 Thread Joshua C. Colp
On Mon, Aug 29, 2022 at 10:53 AM Antony Stone < antony.st...@asterisk.open.source.it> wrote: > On Monday 29 August 2022 at 15:35:09, Joshua C. Colp wrote: > > > MSet is not deprecated. > > https://wiki.asterisk.org/wiki/display/AST/Asterisk+13+Application_MSet > includes the sentence "MSet

Re: [asterisk-users] Originate with label?

2022-08-29 Thread Antony Stone
On Monday 29 August 2022 at 15:35:09, Joshua C. Colp wrote: > MSet is not deprecated. https://wiki.asterisk.org/wiki/display/AST/Asterisk+13+Application_MSet includes the sentence "MSet behaves in a similar fashion to the way Set worked in 1.2/1.4 and is thus prone to doing things that you may

Re: [asterisk-users] Originate with label?

2022-08-29 Thread Joshua C. Colp
On Mon, Aug 29, 2022 at 10:30 AM Antony Stone < antony.st...@asterisk.open.source.it> wrote: > On Monday 29 August 2022 at 14:51:27, Mark Murawski wrote: > > > On 8/29/22 08:48, Mark Murawski wrote: > > > > > > Hi Antony, > > > > > > I love to hear about AEL use-cases. I'm happy that AEL is

Re: [asterisk-users] Originate with label?

2022-08-29 Thread Antony Stone
On Monday 29 August 2022 at 14:51:27, Mark Murawski wrote: > On 8/29/22 08:48, Mark Murawski wrote: > > > > Hi Antony, > > > > I love to hear about AEL use-cases. I'm happy that AEL is working out > > for you. It is, although there are ways I think it can be improved - I'm wondering how best

Re: [asterisk-users] [External] I think there may be a bug in 18.14.0 ${GEOLOC_PROFILE(profile_precedence)}, seems to always return prefer_incoming

2022-08-29 Thread Dan Cropp
Thank you for the explanation George. This makes it very easy to know if the Geo Location is the configured or an incoming value. Dan From: asterisk-users On Behalf Of George Joseph Sent: Thursday, August 25, 2022 7:21 AM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject:

Re: [asterisk-users] Originate with label?

2022-08-29 Thread Mark Murawski
On 8/29/22 08:48, Mark Murawski wrote: On 8/29/22 08:31, Antony Stone wrote: Hi. https://wiki.asterisk.org/wiki/display/AST/Asterisk+16+Application_Originate I need to use Originate() in a dialplan, pointing to another location in the same extension of the same context, so for example:

Re: [asterisk-users] Originate with label?

2022-08-29 Thread Mark Murawski
On 8/29/22 08:31, Antony Stone wrote: Hi. https://wiki.asterisk.org/wiki/display/AST/Asterisk+16+Application_Originate I need to use Originate() in a dialplan, pointing to another location in the same extension of the same context, so for example:

[asterisk-users] Originate with label?

2022-08-29 Thread Antony Stone
Hi. https://wiki.asterisk.org/wiki/display/AST/Asterisk+16+Application_Originate I need to use Originate() in a dialplan, pointing to another location in the same extension of the same context, so for example: Originate(Local/${Dest}@Dialout,exten,${CONTEXT},${EXTEN},158); I don't seem to be