diff options
Diffstat (limited to 'misc/freeswitch/scripts/dialplan')
-rw-r--r-- | misc/freeswitch/scripts/dialplan/dialplan.lua | 1 | ||||
-rw-r--r-- | misc/freeswitch/scripts/dialplan/presence.lua | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/misc/freeswitch/scripts/dialplan/dialplan.lua b/misc/freeswitch/scripts/dialplan/dialplan.lua index 1133f58..b39acff 100644 --- a/misc/freeswitch/scripts/dialplan/dialplan.lua +++ b/misc/freeswitch/scripts/dialplan/dialplan.lua @@ -18,6 +18,7 @@ local CALL_FORWARDING_SERVICES = { HUNT_GROUP_EMPTY = 'offline', ACD_NO_AGENTS = 'offline', ACD_TIMEOUT = 'noanswer', + NO_USER_RESPONSE = 'offline', } -- create dialplan object diff --git a/misc/freeswitch/scripts/dialplan/presence.lua b/misc/freeswitch/scripts/dialplan/presence.lua index 0f63ce9..af05756 100644 --- a/misc/freeswitch/scripts/dialplan/presence.lua +++ b/misc/freeswitch/scripts/dialplan/presence.lua @@ -53,6 +53,7 @@ function Presence.set(self, state, caller_number) event:addHeader('presence-call-direction', direction); event:addHeader('answer-state', state); event:addHeader('unique-id', self.uuid); + event:addHeader('event_origin', 'gemeinschaft'); if caller_number then if self.inbound then event:addHeader('Caller-Destination-Number', caller_number); |