[Home]

Summary:ASTERISK-12452: No application 'DigitTimeout' for extension
Reporter:Sébastien Cramatte (scramatte)Labels:
Date Opened:2008-07-25 03:14:57Date Closed:2011-06-07 14:07:50
Priority:MinorRegression?No
Status:Closed/CompleteComponents:Functions/func_timeout
Versions:Frequency of
Occurrence
Related
Issues:
Environment:Attachments:
Description:Hello,

I've just setup a macro for incoming call

[macro-menu]
exten => s,1,Ringing
exten => s,n,Wait,3
exten => s,n,Answer
exten => s,n,Playback(welcome)
exten => s,n,DigitTimeout(5)
exten => s,n,Background(if-u-know-ext-dial)
exten => s,n,Dial(SIP/200,10)
exten => s,n,Voicemail(u${EXTEN})
exten => s,n,Hangup

[default]
exten => t,1,Hangup
exten => _968969955,1,Macro(menu,${EXTEN})

When I receive a call the IVR exit immediately with this error :

...
[Jul 25 10:43:14] WARNING[11931]: pbx.c:1832 pbx_extension_helper: No application 'DigitTimeout' for extension (macro-menu, s, 5)
...


Seems that is related to this issue :
http://lists.digium.com/pipermail/asterisk-gui/2007-April/000363.html

But In this mail digium team tell that is fixed ... but in 1.4.21.2 and SVN this is not the case !

Please let me know If you need any other details to fix this issue
It's quite annoying bug !

Regards



****** ADDITIONAL INFORMATION ******

I've tried with SVN and 1.4.21.2 sources.
I'm running an Ubuntu Gutsy.

Comments:By: snuffy (snuffy) 2008-07-25 03:17:56

I think you will find its like this
exten => s,1,Set(TIMEOUT(digit)=5)

By: Tilghman Lesher (tilghman) 2008-07-25 08:01:01

DigitTimeout was deprecated in 1.2 and removed in 1.4.  See snuffy's note for the correct syntax.