> Is there any syntax I can use to put a delay in two lines being dialed?
> One is a SIP endpoint, the other is my cell phone.
Not directly, but yes. Hint: Local channel + Wait. Something like this:
Dial(SIP/phone&Local/3105151212 at delayed)
[delayed]
exten => XXXXXXXXXX,1,Wait(10)
exten => XXXXXXXXXX,2,Dial(SIP/${EXTEN}@trunk)
--Luki