I search in conf files where ring groups are defined.
This is my simple ring group.
exten => 605,1(cid),Gosub(macro-user-callerid,s,1())
exten => 605,n,Set(__MCGROUP=${EXTEN})
exten => 605,n,Gosub(macro-blkvm-setifempty,s,1())
exten => 605,n,GotoIf($["${GOSUB_RETVAL}" = "TRUE"]?skipov)
exten => 605,n,Gosub(macro-blkvm-set,s,1(reset))
exten => 605,n,Set(__NODEST=)
exten => 605,n(skipov),Set(RRNODEST=${NODEST})
exten => 605,n(skipvmblk),Set(__NODEST=${EXTEN})
exten => 605,n,GosubIf($[${DB_EXISTS(RINGGROUP/605/changecid)} = 1 & "${DB(RINGGROUP/605/changecid)}" != "default" & "${DB(RINGGROUP/605/changecid)}" != ""]?sub-rgsetcid,s,1())
exten => 605,n,Gosub(sub-record-check,s,1(rg,605,dontcare))
exten => 605,n,Set(RingGroupMethod=ringall)
exten => 605,n,Set(__ALT_CONFIRM_MSG=${IF($[${LEN(${VQ_CONFIRMMSG})}>1]?${IF($["${VQ_CONFIRMMSG}"!="0"]?${VQ_CONFIRMMSG}: )}:)})
exten => 605,n,GotoIf($[$["${RG_CONFIRM}"="1"] | $[${LEN(${VQ_CONFIRMMSG})}>1]]?RGVQANNOUNCE:NORGVQANNOUNCE)
exten => 605,n(RGVQANNOUNCE),Gosub(macro-dial-confirm,s,1(20,m(none)${REPLACE(DIAL_OPTIONS,rQ(NO_ANSWER))},415,605))
exten => 605,n,Goto(gosubhere)
exten => 605,n(NORGVQANNOUNCE),Gosub(macro-dial,s,1(20,m(none)${REPLACE(DIAL_OPTIONS,rQ(NO_ANSWER))},415))
exten => 605,n(gosubhere),Gosub(sub-record-cancel,s,1())
exten => 605,n,Set(RingGroupMethod=)
exten => 605,n,GotoIf($["foo${RRNODEST}" != "foo"]?nodest)
exten => 605,n,Set(__NODEST=)
exten => 605,n,Gosub(macro-blkvm-clr,s,1())
exten => 605,n,Goto(app-blackhole,hangup,1)
exten => 605,n(nodest),Noop(SKIPPING DEST, CALL CAME FROM Q/RG: ${RRNODEST})
I see these two lines in particular. They have the r char after the DIAL_OPTIONS. Is this re-introduce the r option that break the early media?
exten => 605,n(RGVQANNOUNCE),Gosub(macro-dial-confirm,s,1(20,m(none)${REPLACE(DIAL_OPTIONS,rQ(NO_ANSWER))},415,605))
exten => 605,n(NORGVQANNOUNCE),Gosub(macro-dial,s,1(20,m(none)${REPLACE(DIAL_OPTIONS,rQ(NO_ANSWER))},415))
If yes, how can I delete that option from here?