Using Asterisk 11.20. Question about Park application
Is there any way to hangup automatically after Park?
We found what seems to be a bug that if the one who parks don’t hang up after hitting Park, then the caller who dials 701 is connected to the one who pressed Park (wrong).
Current situation:
Phone 1 calls Phone 2.
Phone 2 parks the call and doesn’t hang up.
Phone 3 dials 701 and gets connected to Phone 2 (wrong)
Phone 1 calls Phone 2.
Phone 2 parks the call and hangs up.
Phone 3 dials 701 and gets connected to Phone 1 (correct)
Expected result:
Phone 1 calls Phone 2.
Phone 2 parks the call and doesn’t hang up, so the call is hung up automatically after announcing the call parking location.
Phone 3 dials 701 and gets connected to Phone 1 (correct)
exten => _700, n, Playback(extension)
exten => _700, n, Park(${PARKTIMEOUT}000,call-park-timeout,${PARKINGEXTEN},1)
exten => _700, n, Hangup() → this is not working
Is there a configuration or something we can get this to work?