Remove Congession Tones from macro-outisbusy

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,Hangup

exten => intracompany,1,Congestion(20)
exten => intracompany,n,Hangup

exten => emergency,1,Congestion(20)
exten => emergency,n,Hangup

;–== end of [macro-outisbusy] ==–;
`

Thanks,

-d

Create a new [macro-is-busy] in extensions_freepbx_override.conf (IIRC) and remove or replace whatever parts you want to update.

The *freepbx_override* file is there to accomplish this precise type of thing.

Thanks for verifying. New to FreePBX and just trying to verify a few things.