Can't have globals in includes
This commit is contained in:
parent
333458f06c
commit
63a2723de7
1 changed files with 3 additions and 3 deletions
|
@ -4,8 +4,8 @@
|
||||||
; depends: app_macro app_system app_record func_callerid
|
; depends: app_macro app_system app_record func_callerid
|
||||||
; app_sayunixtime app_playback func_db
|
; app_sayunixtime app_playback func_db
|
||||||
; format_gsm codec_gsm
|
; format_gsm codec_gsm
|
||||||
[globals]
|
;[globals]
|
||||||
LASTCALL_DIR=/opt/etc/asterisk/directory
|
;LASTCALL_DIR=/etc/asterisk/directory
|
||||||
|
|
||||||
[macro-lastcallstore] ; (Number , EntryType, BufferSize)
|
[macro-lastcallstore] ; (Number , EntryType, BufferSize)
|
||||||
exten => s,1,set(lcsName=lastcall)
|
exten => s,1,set(lcsName=lastcall)
|
||||||
|
@ -78,7 +78,7 @@ exten => 6,1,GotoIf($[$[${lcsPointer} = ${lcsCount}] | $["${lcsLastDate}" = ""]]
|
||||||
exten => 6,n,Set(lcsPointer=$[${lcsPointer} + 1])
|
exten => 6,n,Set(lcsPointer=$[${lcsPointer} + 1])
|
||||||
exten => 4,1,GotoIf($[${lcsPointer}=1]?sayn)
|
exten => 4,1,GotoIf($[${lcsPointer}=1]?sayn)
|
||||||
exten => 4,n,Set(lcsPointer=$[${lcsPointer} - 1])
|
exten => 4,n,Set(lcsPointer=$[${lcsPointer} - 1])
|
||||||
exten => _[46],n(sayn),saynumber(${lcsPointer})
|
exten => _[46],n(sayn),Background(h-${lcsPointer})
|
||||||
exten => _[46],n,goto(s|again)
|
exten => _[46],n,goto(s|again)
|
||||||
exten => 7,1,GotoIf($["${lcsLastNum}" = ""]?noinfo])
|
exten => 7,1,GotoIf($["${lcsLastNum}" = ""]?noinfo])
|
||||||
exten => 7,2,macro(tagnumber,${lcsLastNum},${LASTCALL_DIR})
|
exten => 7,2,macro(tagnumber,${lcsLastNum},${LASTCALL_DIR})
|
||||||
|
|
Loading…
Reference in a new issue