[asterisk-bugs] [Asterisk 0014663]: [patch] Adding two variables for dynamic features (applicationmap)
Asterisk Bug Tracker
noreply at bugs.digium.com
Wed Aug 26 18:15:01 CDT 2009
A NOTE has been added to this issue.
======================================================================
https://issues.asterisk.org/view.php?id=14663
======================================================================
Reported By: tamiel
Assigned To: jpeeler
======================================================================
Project: Asterisk
Issue ID: 14663
Category: Resources/res_features
Reproducibility: N/A
Severity: feature
Priority: normal
Status: closed
Target Version: 1.6.x Version Tracker
Asterisk Version: SVN
Regression: No
SVN Branch (only for SVN checkouts, not tarball releases): trunk
SVN Revision (number only!):
Request Review:
Resolution: fixed
Fixed in Version:
======================================================================
Date Submitted: 2009-03-13 10:36 CDT
Last Modified: 2009-08-26 18:15 CDT
======================================================================
Summary: [patch] Adding two variables for dynamic features
(applicationmap)
Description:
Sometimes, I need to know the bridged channel name on the other side (the
unique channel name) and the last triggered dynamic feature.
For example, if the last dynamic feature is set, I will play one sound to
caller and if not set I will play nothing and hangup caller.
So I have set two new variables :
DYNAMIC_FEATURENAME : the Last triggered dynamic feature
DYNAMIC_PEERNAME : the unique channel name on the other side
This variables are available on both side (caller and callee).
For example :
In features.conf, I have this applicationmap feature :
test => **,peer/caller,Hangup,16
In extensions.conf, I have :
exten => 1234,1,Set(__DYNAMIC_FEATURES=test)
exten => 1234,n,Dial(SIP/10.68.4.144,20)
exten => 1234,n,Verbose(0|${DYNAMIC_FEATURENAME})
exten => 1234,n,GotoIf($["${DYNAMIC_FEATURENAME}" = "test"]?10:50)
exten => 1234,10,PlayBack(demo-thanks)
exten => 1234,50,Hangup()
If caller press '**' during dial, callee is disconnected and caller goto
priority 10 and demo-thanks is played.
If dynamic feature is not set or not applicationmap "test", caller is
disconnected.
======================================================================
----------------------------------------------------------------------
(0109708) svnbot (reporter) - 2009-08-26 18:15
https://issues.asterisk.org/view.php?id=14663#c109708
----------------------------------------------------------------------
Repository: asterisk
Revision: 214311
_U branches/1.6.1/
------------------------------------------------------------------------
r214311 | jpeeler | 2009-08-26 18:15:01 -0500 (Wed, 26 Aug 2009) | 18
lines
Blocked revisions 214309 via svnmerge
........
r214309 | jpeeler | 2009-08-26 18:13:19 -0500 (Wed, 26 Aug 2009) | 12
lines
Add two new dialplan variables when using features
Added DYNAMIC_FEATURENAME which holds the last triggered dynamic
feature.
Added DYNAMIC_PEERNAME which holds the unique channel name on the other
side
and is set when a dynamic feature is triggered.
(closes issue https://issues.asterisk.org/view.php?id=14663)
Reported by: tamiel
Patches:
20090313_features.diff uploaded by tamiel (license 712)
Tested by: tamiel
........
------------------------------------------------------------------------
http://svn.digium.com/view/asterisk?view=rev&revision=214311
Issue History
Date Modified Username Field Change
======================================================================
2009-08-26 18:15 svnbot Checkin
2009-08-26 18:15 svnbot Note Added: 0109708
======================================================================
More information about the asterisk-bugs
mailing list