Difference between revisions of "Prelocalization"

From Kolmisoft Wiki
Jump to navigationJump to search
Line 29: Line 29:
'''prelocalization_location''' - which Location to use for prelocalization? Value should be Location ID.<br/>
'''prelocalization_location''' - which Location to use for prelocalization? Value should be Location ID.<br/>
'''prelocalization_global_rules''' - should we include global rules? Value is either 1 or 0 (default 0).<br/><br/>
'''prelocalization_global_rules''' - should we include global rules? Value is either 1 or 0 (default 0).<br/><br/>
For example:
  prelocalization_location = 143
  prelocalization_global_rules = 1


Note: reload is not required when this file is changed.
Note: reload is not required when this file is changed.

Revision as of 13:03, 21 June 2018

Prelocalization allows to do Localization before any other action in MOR.

How to enable it

Latest MOR X12 (or higher) version is required for this feature to work

Modify /etc/asterisk/mor_extensions.conf to include MOR prelocalization AGI script (at around 40th line, just above exten => _X.,n,mor(${EXTEN}))

exten => _X.,1,NoOp(MOR starts)
exten => _X.,n,GotoIf($["${MOR_DIAL_LOCAL_IVR}" != ""]?mor_dial_local_ivr,s,1)
exten => _X.,n,Gosub(diversion_settings,${EXTEN},1)
exten => _X.,n,Gosub(proxy_settings,${EXTEN},1)
exten => _X.,n,Set(__MOR_SIP_TO=${SIP_HEADER(To)})
exten => _X.,n,Set(TIMEOUT(response)=20)
exten => _X.,n,AGI(mor_prelocalization)  <--------------------------------------- ADD THIS LINE HERE ----------- !!!!
exten => _X.,n,mor(${EXTEN})
exten => _X.,n,GotoIf($["${MOR_CARD_USED}" != ""]?mor_callingcard,s,1)
exten => _X.,n,GotoIf($["${MOR_ANIPIN_USED}" != ""]?mor_anipin,s,1)
exten => _X.,n,GotoIf($["${DIALSTATUS}" = "BUSY"]?BUSY,1:HANGUP,1)

Asterisk dialplan should be reloaded each time this file is changed:

asterisk -rx "dialplan reload"

Configuration

Configuration file /etc/mor/system.conf

prelocalization_location - which Location to use for prelocalization? Value should be Location ID.
prelocalization_global_rules - should we include global rules? Value is either 1 or 0 (default 0).

For example:

 prelocalization_location = 143
 prelocalization_global_rules = 1


Note: reload is not required when this file is changed.

Script output

Prelocalization output is written to Asterisk verbose log at the beginning of the call:

mor_prelocalization: MOR prelocalization AGI script started                                                                                                                                                                                  
mor_prelocalization: Original destination number: 00370123456                                                                                                                                                                                
mor_prelocalization: Original source number: +390000000
mor_prelocalization: Original source name: test
mor_prelocalization: Localized dst number: 370123456 (cut: 00, add: )
mor_prelocalization: Localized src number: 390000000 (cut: +, add: )                                                                                                                                                                         
mor_prelocalization: MOR prelocalization AGI script stopped