Hello!
I used old asterisk for mass bulk calls. Performance is good without unnecessary modules and with chan_sip.
In 2022 I want to do some tests with newest version of Asterisk (with actual chan driver) and with non-deprecated modules&application to compare performance.
Unfortunately Macro application is deprecated, and I can’t do this:
channel originate Local/number*some_arguments@from-context/n application Macro some-special-macro
where in Macro I have something like that:
exten => s,1,Answer()
same => n,Playback(123123)
same => n,Noop(123123)
same => n,Background(123123)
same => n, etc...
So what I have to use instead?
When I use other applications (Goto, Gosub) - call is being dropped.
I can use Dial application, but really it looks weird for me:
channel originate Local/number*some_arguments@from-context/n application Dial Local/s@some-special-macro/n
Also I can use channel originate Local/number*some_arguments@from-context/n application Stasis some-special-app
and control this call with ARI… But it looks like unfair comparison.
Any suggestions?
Thank you!