diff options
author | Peter Kozak <spag@golwen.net> | 2013-04-09 13:26:42 +0200 |
---|---|---|
committer | Peter Kozak <spag@golwen.net> | 2013-04-09 13:26:42 +0200 |
commit | 1a56b27c66cb1580313045d87a59ceb4f849038b (patch) | |
tree | f0ba5e3409d003f82cd15078d0774bb63371aa53 /misc/freeswitch/scripts/event | |
parent | fb438bf1a0c62e89b5b8a42f8668d3f510533123 (diff) |
presence_update removed
Diffstat (limited to 'misc/freeswitch/scripts/event')
-rw-r--r-- | misc/freeswitch/scripts/event/presence_update.lua | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/misc/freeswitch/scripts/event/presence_update.lua b/misc/freeswitch/scripts/event/presence_update.lua index f9d8ee7..fd85f03 100644 --- a/misc/freeswitch/scripts/event/presence_update.lua +++ b/misc/freeswitch/scripts/event/presence_update.lua @@ -95,9 +95,6 @@ function PresenceUpdate.sofia_register(self, event) local timestamp = event:getHeader('Event-Date-Timestamp'); local sip_account = self:retrieve_sip_account(account, account); - if sip_account and common.str.to_b(self.config.trigger.sip_account_register) then - self:trigger_rails(sip_account, 'register', timestamp, account) - end self.log:debug('[', account, '] PRESENCE_UPDATE - flushing account cache on register'); self.presence_accounts[account] = nil; @@ -109,9 +106,6 @@ function PresenceUpdate.sofia_ungerister(self, event) local timestamp = event:getHeader('Event-Date-Timestamp'); local sip_account = self:retrieve_sip_account(account, account); - if sip_account and common.str.to_b(self.config.trigger.sip_account_unregister) then - self:trigger_rails(sip_account, 'unregister', timestamp, account) - end self.log:debug('[', account, '] PRESENCE_UPDATE - flushing account cache on unregister'); self.presence_accounts[account] = nil; @@ -242,9 +236,6 @@ function PresenceUpdate.sip_account(self, inbound, account, domain, status, uuid uuid = uuid }:set(status_map[status] or 'terminated', caller_id); - if common.str.to_b(self.config.trigger.sip_account_presence) then - self:trigger_rails(sip_account, status_map[status] or 'terminated', timestamp, uuid); - end end |