Projekat

Općenito

Profil

ParkingCall, podešenje

Podešenje parkinga se vrši u sljedećim conf fajlovima

  • features.conf
  • extensions.ael

features.conf

[general]
parkext => 700                  ; What extension to dial to park
parkpos => 701-720              ; What extensions to park calls on. These needs to be
                                ; numeric, as Asterisk starts from the start position
                                ; and increments with one for the next parked call.
context => parkedcalls          ; Which context parked calls are in
;parkingtime => 45              ; Number of seconds a call can be parked for
                                ; (default is 45 seconds)
;courtesytone = beep            ; Sound file to play to the parked caller
                                ; when someone dials a parked call
                                ; or the Touch Monitor is activated/deactivated.
;parkedplay = caller            ; Who to play the courtesy tone to when picking up a parked call
                                ; one of: parked, caller, both  (default is caller)
;adsipark = yes                 ; if you want ADSI parking announcements
;findslot => next               ; Continue to the 'next' free parking space.
                                ; Defaults to 'first' available
;parkedmusicclass=default       ; This is the MOH class to use for the parked channel
                                ; as long as the class is not set on the channel directly
                                ; using Set(CHANNEL(musicclass)=whatever) in the dialplan

[featuremap]
parkcall => #9                  ; Park call (one step parking)

bitno je podesiti:

  • parkext => 700 - ekstenzija za pozivanje parkinga
  • parkpos => 701-720 - dostupne pozicije parkinga, recimo koristi se od 701 do 720, to su moguće pozicije.
  • context => parkedcalls - u kojem kontekstu su parkinzi, bitno za extensions.ael

extensions.ael

Primjer podešenja u extensions.ael

// ... lista ekstenzija i aplikacija .....

33  =>  {
            Dial(sip/33, 400, tTr);
        };

34  =>  {
            Dial(sip/34, 400, tTr);
        };

// ......

includes {
            parkedcalls;
            out;
         }

Bitno je uvrstiti u includes listu i parkerdcalls koji smo prethodno podesili u features.conf (sekc. context)

Kako radi opcija Call parking, pogledati u Korištenje opcije parkinga

asterisk-b-out-ba