Yealink Forums
Dial pause or delay - Printable Version

+- Yealink Forums (http://forum.yealink.com/forum)
+-- Forum: IP Phone Series (/forumdisplay.php?fid=4)
+--- Forum: Configuration (/forumdisplay.php?fid=24)
+--- Thread: Dial pause or delay (/showthread.php?tid=45530)



Dial pause or delay - jsubirana - 12-01-2021 05:38 PM

I have an script that sets active account (thats what is done in de first execute line), then changes led status to on and finally that account needs to enter the queue (dialing *62) but by the time of executing the dial , the account is not yet registered since this process needs some time, so it fails.

Is it a way to introduce a delay before executing dial ?

<?xml version="1.0" encoding="ISO-8859-1"?>

<YealinkIPPhoneExecute Beep="yes">
<ExecuteItem URI="http://myserver/3CX/SIP901.xml"/>
<ExecuteItem URI="Led:LINE10_GREEN=on"/>
## how to introduce a delay here ##
<ExecuteItem URI="Dial:*62"/>
</YealinkIPPhoneExecute>

or maybe a pause in dialinig process like "Dial:,,,,,,,,,,*62"
but this comma are not taken into account so dialing is not delayed...

thanks in advance