Limit Outbound route

Hi,

I’m using Elastix 4 and i want the outbound route can limit count.
example : 5 call outbound for a day.

somebody can u help me ?

Thanks

Contact the Elastix people as we do not know how their dialplans work. Try: http://forum.elastix.org/

I send you a personal message. Looking forward to your respons.

/EdW

Assuming there is a way to indentify the outbound calls per outbound route on your CDR, then you can write an AGI who count the call before dial and add some logic

oke @ambiorixg12 , i’ve already identify the outbound route.
how i can set some logic ?
when the extension call until 50 a day, then stop or unvailable message for that extension.
and continue call tommorow.

This will do the trick. I tried and tested it and it is working. Just around 20 lines of plain Asterisk script, as simple as possible, solid as a rock and easy to add to your system. I hope it is useful to somebody.
/EdW

;;;;;;;;;;;;;;;;;;
; auteur: Erik de Wild
; business: Music Brains & Curiosity
; country: the Netherlands
; date: 23 November 2016
; copyright: GPL3
; if you need help implementing it to your Asterisk system and/or add adjustments or features to the routine
; e-mail or call me.
; e-mail: info@musicbrainsandcuriosity.com
; phone: 0031621830837
;;;;;;;;;;;;;;;;;;

; instruction
; step 1
; add /var/spool/asterisk/outbound_count/ to the system
; mkdir /var/spool/asterisk/outbound_count/ (at the linux prompt)
; step 2
; schedule removing all the files in this directory every 24 hours using crontab
; crontab -e (at the linux prompt)
; the crontab config file will open with your favorite editor.
; add the line below to the file (without “;” ) and save the file
; this will schedule the removing of all the files that holds the
; info about the number of calls made in the last 24 hours at half past two
; at night.
; crontab 30 2 * * * rm /var/spool/asterisk/outbound_count/*

;;;;;;;;;;;;;;;;;;;;;
; this is an example how to implement this routine.
[outbound]
exten => _XXXXXXXXXX,1, Gosub(check_max_number_of_outbound_calls,s,1)
exten => _XXXXXXXXXX,n, Dial(SIP/${PHONE${NUMBER_TO_CALL}},15)
; this line has to be adjusted
exten => _XXXXXXXXXX,n, Hangup()

;;;;;;;;;
; the h (hangup) extension will be processed after hangup
; This is where the actual counter is given an exta tick
; every time a call is successfully made.
;;;;;;;;
;exten => h,1, NoOp(the time that has been called is ${ANSWEREDTIME})
;;;;;;;;;;
; if the length of LENGTH_ANSWEREDTIME is 0 the the call hasn’t been picked up
; and nothing has to happen
;;;;;;;;;;
exten => h,n, SET(LENGTH_ANSWEREDTIME=${LEN(${ANSWEREDTIME})})
exten => h,n, GotoIf($[ “${LENGTH_ANSWEREDTIME}” : “0”]?this_is_the_end)
;;;;;;;;;;;;;;;
; if the number of made calls is zero, that means the file isn’t there yet
; this triggers the file to be generated.

;;;;;;;;;;;;;;;
exten => h,n, GotoIf($[ “${NUMBER_OF_MADE_CALLS}” : “0”]?you_have_not_called_yet)
; 3 digits are added to the already existing file.
exten => h,n, System(echo “xx” >> ${PATH1})
exten => h,n, Goto(this_is_the_end)
a new file is generated and 3 digits are added to this file
exten => h,n(you_have_not_called_yet), System(echo “xx” > ${PATH1})
exten => h,n(this_is_the_end), NoOp(this is the end)

;;;;;;;;;;;;;;;;;;;;
; add this context to extensions.d in a file with the name check_max_number_of_outbound_calls.conf
; add an #include /etc/asterisk/extensions.d/check_max_number_of_outbound_calls.conf at the top of extensions.conf just under [general] (just to keep the dial plan structured, you also can just add the context to your extensions.conf file)
; add a GoSub(check_max_number_of_outbound_calls,s,1) just before the dial() statement you want
; to limit the use of to five (or whatever number) times a day. With the crontab statement you can easily
; set the number for a week, month or year
;;;;;;;;;;;;;;;;;;.
;;;;;;;;;;;;;;;;;;;;
[check_max_number_of_outbound_calls]
;read the content of a file into variable NUMBER_OF_MADE_CALLS
exten => s,1, Set(MAX_NUMBER_OF_OUTBOUND_CALLS=5)
exten => s,n, Set(CALLING_NUMBER=${CALLERID(num)})
exten => s,n, Set(READ_MADE_CALLS_FILE=${SHELL(cat /var/spool/asterisk/outbound_count/${CALLING_NUMBER})})
exten => s,n, Set(PATH1=/var/spool/asterisk/outbound_count/${CALLING_NUMBER})
exten => s,n, Set(LENGTH_OF_READ_FILE=${LEN(${READ_MADE_CALLS_FILE})})

exten => s,n, SET(NUMBER_OF_MADE_CALLS=${MATH(${LENGTH_OF_READ_FILE}/3,int)})
exten => s,n, NoOp(length of file is ${LENGTH_OF_READ_FILE})
exten => s,n, NoOp(Number of made calls is ${NUMBER_OF_MADE_CALLS})
exten => s,n, GotoIf($[ “${NUMBER_OF_MADE_CALLS}” : “${MAX_NUMBER_OF_OUTBOUND_CALLS}”]?you_have_reached_max_outbound_calls)
exten => s,n, NoOp(Number of max outbound calls is not reached yet)
exten => s,n, Return()

; max outbound calls is reached and, after playing a message, the connection is ended
exten => s,n(you_have_reached_max_outbound_calls), Playback(goodbye)
; voice prompt has to be changed in something like
; “sorry but you allready made your five phone calls of today”

exten => s,n, NoOp(Number of max outbound calls is reached)
exten => s,n, HangUp()

;;;;;;;;;;;;;;;;;;;;;
; part of the solution are a couple of extensions in the h (hangup) extension of the context where the Dial() statement is in.
;;;;;;;;;;;;;;;;;;;;;

My proposal is based on PHP & MYSQL,So I’m assuming you have some knowlege about it, Did you verify there is a field on the Elastix CDR holding the information for the outbound route used to make a call. If so, just make a select counting the number of calls where outbound route equal to the outbound route during the actual call and time is equal today date

i config same this and edit little context
why count = 0 ?
and not found file in folder outbound_count

– Executing [0894976XXX@from-internal-group99:1] Gosub(“SIP/111-000050e7”, “check_max_number_of_outbound_calls,s,1”) in new stack
– Executing [s@check_max_number_of_outbound_calls:1] Set(“SIP/111-000050e7”, “MAX_NUMBER_OF_OUTBOUND_CALLS>2”) in new stack
– Executing [s@check_max_number_of_outbound_calls:2] Set(“SIP/111-000050e7”, “CALLING_NUMBER=11010894976XXX”) in new stack
– Executing [s@check_max_number_of_outbound_calls:3] Set(“SIP/111-000050e7”, “READ_MADE_CALLS_FILE=”) in new stack
– Executing [s@check_max_number_of_outbound_calls:4] Set(“SIP/111-000050e7”, “PATH1=/var/spool/asterisk/outbound_count/11010894976XXX”) in new stack
– Executing [s@check_max_number_of_outbound_calls:5] Set(“SIP/111-000050e7”, “LENGTH_OF_READ_FILE=0”) in new stack
– Executing [s@check_max_number_of_outbound_calls:6] Set(“SIP/111-000050e7”, “NUMBER_OF_MADE_CALLS=0”) in new stack
– Executing [s@check_max_number_of_outbound_calls:7] NoOp(“SIP/111-000050e7”, “length of file is 0”) in new stack
– Executing [s@check_max_number_of_outbound_calls:8] NoOp(“SIP/111-000050e7”, “Number of made calls is 0”) in new stack
– Executing [s@check_max_number_of_outbound_calls:9] GotoIf(“SIP/111-000050e7”, “0?you_have_reached_max_outbound_calls”) in new stack
– Executing [s@check_max_number_of_outbound_calls:10] NoOp(“SIP/111-000050e7”, “Number of max outbound calls is not reached yet”) in new stack
– Executing [s@check_max_number_of_outbound_calls:11] Return(“SIP/111-000050e7”, “”) in new stack
– Executing [0894976XXX@from-internal-group99:2] GotoIfTime(“SIP/111-000050e7”, “08:10-19:55|mon-sun|1-31|jan-dec||?3”) in new stack
– Goto (from-internal-group99,0894976XXX,3)
– Executing [0894976XXX@from-internal-group99:3] Goto(“SIP/111-000050e7”, “from-internal,11010894976XXX,1”) in new stack
– Goto (from-internal,11010894976XXX,1)
– Executing [11010894976XXX@from-internal:1] Macro(“SIP/111-000050e7”, “user-callerid,SKIPTTL,”) in new stack
– Executing [s@macro-user-callerid:1] Set(“SIP/111-000050e7”, “AMPUSER=111”) in new stack
– Executing [s@macro-user-callerid:2] GotoIf(“SIP/111-000050e7”, “0?report”) in new stack
– Executing [s@macro-user-callerid:3] ExecIf(“SIP/111-000050e7”, “1?Set(REALCALLERIDNUM=111)”) in new stack
– Executing [s@macro-user-callerid:4] Set(“SIP/111-000050e7”, “AMPUSER=111”) in new stack
– Executing [s@macro-user-callerid:5] Set(“SIP/111-000050e7”, “AMPUSERCIDNAME=IT”) in new stack
– Executing [s@macro-user-callerid:6] GotoIf(“SIP/111-000050e7”, “0?report”) in new stack
– Executing [s@macro-user-callerid:7] Set(“SIP/111-000050e7”, “AMPUSERCID=111”) in new stack
– Executing [s@macro-user-callerid:8] Set(“SIP/111-000050e7”, “CALLERID(all)=“IT” <111>”) in new stack
– Executing [s@macro-user-callerid:9] ExecIf(“SIP/111-000050e7”, “0?Set(CHANNEL(language)=)”) in new stack
– Executing [s@macro-user-callerid:10] GotoIf(“SIP/111-000050e7”, “1?continue”) in new stack
– Goto (macro-user-callerid,s,19)
– Executing [s@macro-user-callerid:19] Set(“SIP/111-000050e7”, “CALLERID(number)=111”) in new stack
– Executing [s@macro-user-callerid:20] Set(“SIP/111-000050e7”, “CALLERID(name)=IT”) in new stack
– Executing [s@macro-user-callerid:21] NoOp(“SIP/111-000050e7”, “Using CallerID “IT” <111>”) in new stack
– Executing [11010894976XXX@from-internal:2] NoOp(“SIP/111-000050e7”, “Calling Out Route: IT”) in new stack
– Executing [11010894976XXX@from-internal:3] Set(“SIP/111-000050e7”, “MOHCLASS=default”) in new stack
– Executing [11010894976XXX@from-internal:4] Set(“SIP/111-000050e7”, “_NODEST=”) in new stack
– Executing [11010894976XXX@from-internal:5] Macro(“SIP/111-000050e7”, “record-enable,111,OUT,”) in new stack
– Executing [s@macro-record-enable:1] GotoIf(“SIP/111-000050e7”, “1?check”) in new stack
– Goto (macro-record-enable,s,4)
– Executing [s@macro-record-enable:4] ExecIf(“SIP/111-000050e7”, “0?MacroExit()”) in new stack
– Executing [s@macro-record-enable:5] GotoIf(“SIP/111-000050e7”, “0?Group:OUT”) in new stack
– Goto (macro-record-enable,s,15)
– Executing [s@macro-record-enable:15] GotoIf(“SIP/111-000050e7”, “0?IN”) in new stack
– Executing [s@macro-record-enable:16] ExecIf(“SIP/111-000050e7”, “0?MacroExit()”) in new stack
– Executing [s@macro-record-enable:17] NoOp(“SIP/111-000050e7”, “Recording enable for 111”) in new stack
– Executing [s@macro-record-enable:18] Set(“SIP/111-000050e7”, “CALLFILENAME=OUT111-20191118-155050-1574067050.21246”) in new stack
– Executing [s@macro-record-enable:19] Goto(“SIP/111-000050e7”, “record”) in new stack
– Goto (macro-record-enable,s,23)
– Executing [s@macro-record-enable:23] MixMonitor(“SIP/111-000050e7”, “OUT111-20191118-155050-1574067050.21246.gsm,”) in new stack
– Executing [s@macro-record-enable:24] Set(“SIP/111-000050e7”, “CDR(userfield)=audio:OUT111-20191118-155050-1574067050.21246.gsm”) in new stack
– Executing [s@macro-record-enable:25] MacroExit(“SIP/111-000050e7”, “”) in new stack
== Begin MixMonitor Recording SIP/111-000050e7
– Executing [11010894976XXX@from-internal:6] Macro(“SIP/111-000050e7”, “dialout-trunk,165,0894976XXX,”) in new stack
– Executing [s@macro-dialout-trunk:1] Set(“SIP/111-000050e7”, “DIAL_TRUNK=165”) in new stack
– Executing [s@macro-dialout-trunk:2] GosubIf(“SIP/111-000050e7”, “0?sub-pincheck,s,1”) in new stack
– Executing [s@macro-dialout-trunk:3] GotoIf(“SIP/111-000050e7”, “0?disabletrunk,1”) in new stack
– Executing [s@macro-dialout-trunk:4] Set(“SIP/111-000050e7”, “DIAL_NUMBER=0894976XXX”) in new stack
– Executing [s@macro-dialout-trunk:5] Set(“SIP/111-000050e7”, “DIAL_TRUNK_OPTIONS=trT”) in new stack
– Executing [s@macro-dialout-trunk:6] Set(“SIP/111-000050e7”, “OUTBOUND_GROUP=OUT_165”) in new stack
– Executing [s@macro-dialout-trunk:7] GotoIf(“SIP/111-000050e7”, “0?nomax”) in new stack
– Executing [s@macro-dialout-trunk:8] GotoIf(“SIP/111-000050e7”, “0?chanfull”) in new stack
– Executing [s@macro-dialout-trunk:9] GotoIf(“SIP/111-000050e7”, “0?skipoutcid”) in new stack
– Executing [s@macro-dialout-trunk:10] Set(“SIP/111-000050e7”, “DIAL_TRUNK_OPTIONS=T”) in new stack
– Executing [s@macro-dialout-trunk:11] Macro(“SIP/111-000050e7”, “outbound-callerid,165”) in new stack
– Executing [s@macro-outbound-callerid:1] ExecIf(“SIP/111-000050e7”, “0?Set(CALLERPRES()=)”) in new stack
– Executing [s@macro-outbound-callerid:2] ExecIf(“SIP/111-000050e7”, “0?Set(REALCALLERIDNUM=111)”) in new stack
– Executing [s@macro-outbound-callerid:3] GotoIf(“SIP/111-000050e7”, “1?normcid”) in new stack
– Goto (macro-outbound-callerid,s,6)
– Executing [s@macro-outbound-callerid:6] Set(“SIP/111-000050e7”, “USEROUTCID=”) in new stack
– Executing [s@macro-outbound-callerid:7] Set(“SIP/111-000050e7”, “EMERGENCYCID=”) in new stack
– Executing [s@macro-outbound-callerid:8] Set(“SIP/111-000050e7”, “TRUNKOUTCID=201884XX”) in new stack
– Executing [s@macro-outbound-callerid:9] GotoIf(“SIP/111-000050e7”, “1?trunkcid”) in new stack
– Goto (macro-outbound-callerid,s,12)
– Executing [s@macro-outbound-callerid:12] ExecIf(“SIP/111-000050e7”, “1?Set(CALLERID(all)=201884XX)”) in new stack
– Executing [s@macro-outbound-callerid:13] ExecIf(“SIP/111-000050e7”, “0?Set(CALLERID(all)=)”) in new stack
– Executing [s@macro-outbound-callerid:14] ExecIf(“SIP/111-000050e7”, “0?Set(CALLERID(all)=)”) in new stack
– Executing [s@macro-outbound-callerid:15] ExecIf(“SIP/111-000050e7”, “0?Set(CALLERPRES()=prohib_passed_screen)”) in new stack
– Executing [s@macro-dialout-trunk:12] GosubIf(“SIP/111-000050e7”, “0?sub-flp-165,s,1”) in new stack
– Executing [s@macro-dialout-trunk:13] Set(“SIP/111-000050e7”, “OUTNUM=0894976XXX”) in new stack
– Executing [s@macro-dialout-trunk:14] Set(“SIP/111-000050e7”, “custom=SIP/0201884XX”) in new stack
– Executing [s@macro-dialout-trunk:15] ExecIf(“SIP/111-000050e7”, “0?Set(DIAL_TRUNK_OPTIONS=M(setmusic^default)T)”) in new stack
– Executing [s@macro-dialout-trunk:16] Macro(“SIP/111-000050e7”, “dialout-trunk-predial-hook,”) in new stack
– Executing [s@macro-dialout-trunk-predial-hook:1] MacroExit(“SIP/111-000050e7”, “”) in new stack
– Executing [s@macro-dialout-trunk:17] GotoIf(“SIP/111-000050e7”, “0?bypass,1”) in new stack
– Executing [s@macro-dialout-trunk:18] GotoIf(“SIP/111-000050e7”, “0?customtrunk”) in new stack
– Executing [s@macro-dialout-trunk:19] Dial(“SIP/111-000050e7”, “SIP/0201884XX/0894976XXX,300,T”) in new stack