So maybe this is a weird old fashioned question nowadays, everyone seems to want all sorts of queus and voicemails.
But what if I want my line simply to be "busy" when everyone (ok, both of us) are busy?
Or when we both put our phones on DnD
No voicemail. No 2nd line beeps. Just busy.
Its a very clear signal to the person calling, and I feel we may undervalue it.
I know how to send a busy signal in the inbound rules. This, when the processing gets to it, nicely sends a busy signal back up to the caller.
But I do not know how to get past the earlier transfer command.
Because that either already calls (notifies 2nd line) or when put in Do-Not-Disturb causes the caller to hear a "number not exists" message.
Which is of course not what we want.
So how to make a condition, that it skips the transfer if all extentions are busy.
Or better yet. How to get the system to naturally send out a busy signal.....
But what if I want my line simply to be "busy" when everyone (ok, both of us) are busy?
Or when we both put our phones on DnD
No voicemail. No 2nd line beeps. Just busy.
Its a very clear signal to the person calling, and I feel we may undervalue it.
I know how to send a busy signal in the inbound rules. This, when the processing gets to it, nicely sends a busy signal back up to the caller.
<action application="hangup" data="USER_BUSY"/>
But I do not know how to get past the earlier transfer command.
Because that either already calls (notifies 2nd line) or when put in Do-Not-Disturb causes the caller to hear a "number not exists" message.
Which is of course not what we want.
So how to make a condition, that it skips the transfer if all extentions are busy.
Or better yet. How to get the system to naturally send out a busy signal.....
Inbound rule:
<extension name="new_xxx464461" continue="true" uuid="f292b54b-9d56-4327-bae4-4cbca5fc74fd">
<condition field="destination_number" expression="^\+?xx?(xxx464461)$">
<action application="export" data="call_direction=inbound" inline="true"/>
<action application="set" data="domain_uuid=455exxxx-xxxx-415c-8b55-8bc597093924" inline="true"/>
<action application="set" data="domain_name=fusionpbx" inline="true"/>
<action application="set" data="hangup_after_bridge=true"/>
<action application="set" data="continue_on_fail=true"/>
<action application="transfer" data="200 XML fusionpbx"/>
<action application="hangup" data="USER_BUSY"/>
</condition>
</extension>