@dawho9 wrote:
Just looking for clarification to the best way to accomplish something. I have an Asterisk/FreePBX that is sitting between two SIP Trunks doing some B2B termination. Inside of the extensions_additional.conf is a [macro-outisbusy] commands. I would like to remove the playing of congestion tones (remove the Playback comment). Since the extensions_additional.conf is auto-generated, is the right way to simply copy/paste the entire [macro-outisbusy] into the extensions_override_freepbx.conf?
`[macro-outisbusy]
exten => s,1,Progress
exten => s,n,GotoIf($["${EMERGENCYROUTE}" = "YES"]?emergency,1)
exten => s,n,GotoIf($["${INTRACOMPANYROUTE}" = "YES"]?intracompany,1)
exten => s,n,Congestion(20)
exten => s,n,Hangupexten => intracompany,1,Congestion(20)
exten => intracompany,n,Hangupexten => emergency,1,Congestion(20)
exten => emergency,n,Hangup;--== end of [macro-outisbusy] ==--;
`Thanks,
-d
Posts: 3
Participants: 2