On my current asterisk implementation (AsteriskNow 1.2, ASterisk 1.4), I have a voice menu that allows me to have the caller authenticate using a PIN before it will allow them to progress to a ring group. I need to be able to do the same thing on the FreePBX (v2.6 RC2.1), but I can’t seem to figure out how to do it. Here’s the context from my current system:
[voicemenu-custom-3]
include=default
exten=s,1,NoOp(Support)
exten=s,2,Answer()
exten=s,3,Authenticate(/etc/asterisk/support_auth.conf,j,5)
exten=s,4,Goto(ringroups-custom-3,s,1)
exten=s,104,Goto(default,9190,1)
I’m assuming I need to setup a custom context, but I’m enough of a noob to FreePBX to not fully understand how to successfully implement this.