Hi,
I have a complex dialplan which takes care of the ${BLINDTRANSFER} variable. If this is set, the called party will ring up a few seconds and if unanswered the call goes back to the transfering extension. This works well for months, when the phone does the transfer.
But if I transfer a call via FOP2 (blindtransfer), the variable will not be set, so the destination rings for ever (or 'til the caller hung up). Is there a way, to set this variable, when transfering with FOP2?
Asterisk 1.8, FOP2.27 (same with 2.26).
Kind regards
Dominique Görsch
Dialplan example (See prio 4 and 19ff.):
CLI> dialplan show 490@from-internal [553/20005] [ Context 'from-internal' created by 'pbx_config' ] '490' => hint: SIP/4901&SIP/4902 [pbx_config] '_XXX' => hint: SIP/${EXTEN} [pbx_config] [ Included context 'localphones' created by 'pbx_config' ] '490' => 1. NoOp(=== Interner Double-Ruf ===) [pbx_config] 2. NoOp(CLI:${CALLERID(NUM)} CLD:490 (SIP/4901 & SIP/4902)) [pbx_config] 3. NoOp(STATE:SIP/4901/${DEVICE_STATE(SIP/4901)} SIP/4902/${DEVICE_STATE(SIP/4902)}) [pbx_config] 4. GotoIf($["${BLINDTRANSFER}" != ""]?TRANSFER) [pbx_config] 5. GotoIf($["${DB_EXISTS(RUL/${EXTEN})}]?RUL) [pbx_config] 6. Set(_PICKUPMARK=${EXTEN}) [pbx_config] 7. Macro(Normalize) [pbx_config] 8. GotoIf($["${CALLERID(NAME):0:3}"="Uml"]?DIAL) [pbx_config] 9. GotoIf($["${CALLERID(NAME):0:3}"="Abw"]?DIAL) [pbx_config] 10. GotoIf($["${CALLERID(NAME):0:3}"="Ret"]?DIAL) [pbx_config] 11. GotoIf($["${CALLERID(NAME):0:6}"="Wieder"]?DIAL) [pbx_config] 12. SIPAddHeader("Alert-Info:<http://www.notused.com>;info=alert-internal") [pbx_config] 13. AGI(ast_get_phonebook.php) [pbx_config] [DIAL] 14. NoOp() [pbx_config] 15. GotoIf($[ $["${DEVICE_STATE(SIP/4901)}" != "NOT_INUSE"] & $["${DEVICE_STATE(SIP/4901)}" != "UNAVAILABLE"] & $["${DEVICE_STATE(SIP/4901)}" != "INVALID"]]?BUSY) [pbx_config] 16. GotoIf($[ $["${DEVICE_STATE(SIP/4902)}" != "NOT_INUSE"] & $["${DEVICE_STATE(SIP/4902)}" != "UNAVAILABLE"] & $["${DEVICE_STATE(SIP/4902)}" != "INVALID"]]?BUSY) [pbx_config] 17. Dial(SIP/4901&SIP/4902) [pbx_config] 18. Goto(HANGUP) [pbx_config] [TRANSFER] 19. NoOp(TRANS FROM: ${CUT(BLINDTRANSFER,,1)}) [pbx_config] 20. GotoIf($[ $["${DEVICE_STATE(SIP/4901)}" != "NOT_INUSE"] & $["${DEVICE_STATE(SIP/4901)}" != "UNAVAILABLE"] & $["${DEVICE_STATE(SIP/4901)}" != "INVALID"]]?RECALL) [pbx_config] 21. GotoIf($[ $["${DEVICE_STATE(SIP/4902)}" != "NOT_INUSE"] & $["${DEVICE_STATE(SIP/4902)}" != "UNAVAILABLE"] & $["${DEVICE_STATE(SIP/4902)}" != "INVALID"]]?RECALL) [pbx_config] 22. Dial(SIP/4901&SIP/4902,25,m) [pbx_config] [RECALL] 23. NoOp(WIEDERANRUF) [pbx_config] 24. SIPAddHeader(Diversion: "${EXTEN}" <sip:${EXTEN}@10.9.8.1>;reason=unconditional) [pbx_config] 25. Set(CALLERID(NAME)=Ret ${EXTEN}) [pbx_config] 26. RetryDial(,5,-1,${CUT(BLINDTRANSFER,,1)},,m) [pbx_config] 27. Goto(HANGUP) [pbx_config] [RUL] 28. NoOp(Anruf umgeleitet zu ${DB(RUL/${EXTEN})}) [pbx_config] 29. SIPAddHeader(Diversion: <sip:${EXTEN}@10.9.8.1>;reason=unconditional;screen=yes) [pbx_config] 30. Set(CALLERID(NAME)=Uml ${EXTEN}) [pbx_config] 31. Set(CONNECTEDLINE(num)=${DB(RUL/${EXTEN})}) [pbx_config] 32. Set(CONNECTEDLINE(num-pres)=allowed) [pbx_config] 33. Set(CONNECTEDLINE(name)=Uml ${DB(RUL/${EXTEN})}) [pbx_config] 34. Set(CONNECTEDLINE(name-pres)=allowed) [pbx_config] 35. Dial(LOCAL/${DB(RUL/${EXTEN})}@from-internal) [pbx_config] [BUSY] 36. Busy() [pbx_config] 37. Goto(HANGUP) [pbx_config] [HANGUP] 38. NoOp(=== STATUS: ${DIALSTATUS} ===) [pbx_config] 39. NoOp(=== HANGUP: ${HANGUPCAUSE} ===) [pbx_config] 40. HangUp() [pbx_config]