HI, when returning a call from Voicemail by using the DTMF 5 the system will send for the outbound callerID the number that called into the Voicemail so if i call in from my cell phone to the VM system and then press 5 , the reciver will see my cell phone number, i really want him to see my office number i looke at the LUA script and this is what i see there
function return_call(destination)
if (session:ready()) then
--clear the dtmf
dtmf_digits = '';
--flush dtmf digits from the input buffer
session:flushDigits();
--transfer the call
session:transfer(destination, "XML", context);
end
end
can someone help me to guide me what context is doing so i can figure out how to fix the callerID
function return_call(destination)
if (session:ready()) then
--clear the dtmf
dtmf_digits = '';
--flush dtmf digits from the input buffer
session:flushDigits();
--transfer the call
session:transfer(destination, "XML", context);
end
end
can someone help me to guide me what context is doing so i can figure out how to fix the callerID